diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-07 11:34:50 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-07 11:34:50 +0000 |
commit | 0b42a6a8cf94dd05434cf5554449a6b19d47fb1e (patch) | |
tree | 8fb3ae7e00c4f47175d65c74711026d7d2db3ebf /archival/libunarchive | |
parent | 4d63525f76fd783c8ef436996c1b6f1e29dc2945 (diff) | |
download | busybox-w32-0b42a6a8cf94dd05434cf5554449a6b19d47fb1e.tar.gz busybox-w32-0b42a6a8cf94dd05434cf5554449a6b19d47fb1e.tar.bz2 busybox-w32-0b42a6a8cf94dd05434cf5554449a6b19d47fb1e.zip |
- remove superfluous C statements ";;" in decompress_unzip.c, dpkg_deb.c ifconfig.c
- gzip.c: see if O_NOFOLLOW is defined before using it, else take alternate path
closes bug #221 (partially; The rest will follow later).
Diffstat (limited to 'archival/libunarchive')
-rw-r--r-- | archival/libunarchive/decompress_unzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c index 9e327606e..e8767cef5 100644 --- a/archival/libunarchive/decompress_unzip.c +++ b/archival/libunarchive/decompress_unzip.c | |||
@@ -442,7 +442,7 @@ static int inflate_codes(huft_t * my_tl, huft_t * my_td, const unsigned int my_b | |||
442 | if ((e = (t = tl + ((unsigned) b & ml))->e) > 16) | 442 | if ((e = (t = tl + ((unsigned) b & ml))->e) > 16) |
443 | do { | 443 | do { |
444 | if (e == 99) { | 444 | if (e == 99) { |
445 | bb_error_msg_and_die("inflate_codes error 1");; | 445 | bb_error_msg_and_die("inflate_codes error 1"); |
446 | } | 446 | } |
447 | b >>= t->b; | 447 | b >>= t->b; |
448 | k -= t->b; | 448 | k -= t->b; |
@@ -478,7 +478,7 @@ static int inflate_codes(huft_t * my_tl, huft_t * my_td, const unsigned int my_b | |||
478 | if ((e = (t = td + ((unsigned) b & md))->e) > 16) | 478 | if ((e = (t = td + ((unsigned) b & md))->e) > 16) |
479 | do { | 479 | do { |
480 | if (e == 99) | 480 | if (e == 99) |
481 | bb_error_msg_and_die("inflate_codes error 2");; | 481 | bb_error_msg_and_die("inflate_codes error 2"); |
482 | b >>= t->b; | 482 | b >>= t->b; |
483 | k -= t->b; | 483 | k -= t->b; |
484 | e -= 16; | 484 | e -= 16; |