gunzip: s/unsigned char extra_short/unsigned extra_short/
authorDenis Vlasenko <vda.linux@googlemail.com>
Thu, 15 Mar 2007 23:30:18 +0000 (23:30 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Thu, 15 Mar 2007 23:30:18 +0000 (23:30 -0000)
we can unzip openssh-4.3p2.tar.gz now :)

archival/libunarchive/check_header_gzip.c

index 09cd6a9..66aa574 100644 (file)
@@ -29,7 +29,7 @@ void check_header_gzip_or_die(int src_fd)
 
        if (header.formatted.flags & 0x04) {
                /* bit 2 set: extra field present */
-               unsigned char extra_short;
+               unsigned extra_short;
 
                extra_short = xread_char(src_fd) + (xread_char(src_fd) << 8);
                while (extra_short > 0) {