gunzip: s/unsigned char extra_short/unsigned extra_short/

we can unzip openssh-4.3p2.tar.gz now :)
This commit is contained in:
Denis Vlasenko 2007-03-15 23:30:18 +00:00
parent 4efeaee387
commit 3ce293b585

View 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) {