Hello community,

here is the log from the commit of package unzip for openSUSE:Factory
checked in at Sat Aug 6 19:09:43 CEST 2011.



--------
--- unzip/unzip.changes 2011-05-23 16:22:07.000000000 +0200
+++ /mounts/work_src_done/STABLE/unzip/unzip.changes    2011-08-05 
14:03:53.000000000 +0200
@@ -1,0 +2,5 @@
+Fri Aug  5 13:57:24 CEST 2011 - p...@suse.de
+
+- Don't call isprint (bnc#620483).
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


New:
----
  unzip-dont_call_isprint.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ unzip.spec ++++++
--- /var/tmp/diff_new_pack.1P7ZiM/_old  2011-08-06 19:09:10.000000000 +0200
+++ /var/tmp/diff_new_pack.1P7ZiM/_new  2011-08-06 19:09:10.000000000 +0200
@@ -22,7 +22,7 @@
 Group:          Productivity/Archiving/Compression
 AutoReqProv:    on
 Version:        6.00
-Release:        10
+Release:        12
 %define fileversion 60
 Summary:        A program to unpack compressed files
 Source:         %{name}%{fileversion}.tar.bz2
@@ -35,6 +35,7 @@
 Patch8:         unzip-open_missing_mode.patch
 Patch10:        unzip-5.52-use_librcc.patch
 Patch11:        unzip-no-build-date.patch
+Patch12:        unzip-dont_call_isprint.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  librcc-devel
 Suggests:       librcc0
@@ -62,6 +63,7 @@
 %patch8
 %patch10
 %patch11
+%patch12
 
 %build
 export RPM_OPT_FLAGS="%optflags \

++++++ unzip-dont_call_isprint.patch ++++++
Author: Suren A. Chilingaryan <c...@dside.dyndns.org>

Index: extract.c
===================================================================
--- extract.c.orig      2009-03-14 04:32:52.000000000 +0300
+++ extract.c   2010-07-07 17:29:52.000000000 +0400
@@ -2596,7 +2596,7 @@ char *fnfilter(raw, space, size)   /* co
      */
 #   define UZ_FNFILTER_REPLACECHAR      '?'
 # endif
-        if (!isprint(*r)) {
+        if (*r < 32) { //(!isprint(*r)) {
             if (*r < 32) {
                 /* ASCII control codes are escaped as "^{letter}". */
                 if (se != NULL && (s > (space + (size-4)))) {

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to