From 0b42a6a8cf94dd05434cf5554449a6b19d47fb1e Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 7 Oct 2005 11:34:50 +0000 Subject: - 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). --- archival/libunarchive/decompress_unzip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archival/libunarchive') diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c index 9e32760..e8767ce 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 if ((e = (t = tl + ((unsigned) b & ml))->e) > 16) do { if (e == 99) { - bb_error_msg_and_die("inflate_codes error 1");; + bb_error_msg_and_die("inflate_codes error 1"); } b >>= t->b; k -= t->b; @@ -478,7 +478,7 @@ static int inflate_codes(huft_t * my_tl, huft_t * my_td, const unsigned int my_b if ((e = (t = td + ((unsigned) b & md))->e) > 16) do { if (e == 99) - bb_error_msg_and_die("inflate_codes error 2");; + bb_error_msg_and_die("inflate_codes error 2"); b >>= t->b; k -= t->b; e -= 16; -- cgit v1.1