diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-15 23:30:18 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-15 23:30:18 +0000 |
commit | 3ce293b58560e451e908738ccf9fe5fe3314984f (patch) | |
tree | f79cbf18698976565033e77f7191051953fd0579 | |
parent | 4efeaee387eb9c20afcf5576802755a646adb776 (diff) | |
download | busybox-w32-3ce293b58560e451e908738ccf9fe5fe3314984f.tar.gz busybox-w32-3ce293b58560e451e908738ccf9fe5fe3314984f.tar.bz2 busybox-w32-3ce293b58560e451e908738ccf9fe5fe3314984f.zip |
gunzip: s/unsigned char extra_short/unsigned extra_short/
we can unzip openssh-4.3p2.tar.gz now :)
-rw-r--r-- | archival/libunarchive/check_header_gzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/check_header_gzip.c b/archival/libunarchive/check_header_gzip.c index 09cd6a94e..66aa57460 100644 --- a/archival/libunarchive/check_header_gzip.c +++ b/archival/libunarchive/check_header_gzip.c | |||
@@ -29,7 +29,7 @@ void check_header_gzip_or_die(int src_fd) | |||
29 | 29 | ||
30 | if (header.formatted.flags & 0x04) { | 30 | if (header.formatted.flags & 0x04) { |
31 | /* bit 2 set: extra field present */ | 31 | /* bit 2 set: extra field present */ |
32 | unsigned char extra_short; | 32 | unsigned extra_short; |
33 | 33 | ||
34 | extra_short = xread_char(src_fd) + (xread_char(src_fd) << 8); | 34 | extra_short = xread_char(src_fd) + (xread_char(src_fd) << 8); |
35 | while (extra_short > 0) { | 35 | while (extra_short > 0) { |