diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2012-12-05 11:08:30 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-12-05 11:08:30 +0100 |
commit | 4d5955e9ece64e273e72c303983199be73022fab (patch) | |
tree | d5217c50e6c8c8cd2c43b1c012587c53538185b1 | |
parent | a8461173ba5431bb64cd37112eba44a6b51640c4 (diff) | |
download | busybox-w32-4d5955e9ece64e273e72c303983199be73022fab.tar.gz busybox-w32-4d5955e9ece64e273e72c303983199be73022fab.tar.bz2 busybox-w32-4d5955e9ece64e273e72c303983199be73022fab.zip |
decompress_uncompress: comment out a bigger chunk of debug code
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | archival/libarchive/decompress_uncompress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libarchive/decompress_uncompress.c b/archival/libarchive/decompress_uncompress.c index 0b2db94bb..3826a65ea 100644 --- a/archival/libarchive/decompress_uncompress.c +++ b/archival/libarchive/decompress_uncompress.c | |||
@@ -228,11 +228,11 @@ unpack_Z_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd) | |||
228 | /* Special case for KwKwK string. */ | 228 | /* Special case for KwKwK string. */ |
229 | if (code >= free_ent) { | 229 | if (code >= free_ent) { |
230 | if (code > free_ent) { | 230 | if (code > free_ent) { |
231 | /* | ||
231 | unsigned char *p; | 232 | unsigned char *p; |
232 | 233 | ||
233 | posbits -= n_bits; | 234 | posbits -= n_bits; |
234 | p = &inbuf[posbits >> 3]; | 235 | p = &inbuf[posbits >> 3]; |
235 | /* | ||
236 | bb_error_msg | 236 | bb_error_msg |
237 | ("insize:%d posbits:%d inbuf:%02X %02X %02X %02X %02X (%d)", | 237 | ("insize:%d posbits:%d inbuf:%02X %02X %02X %02X %02X (%d)", |
238 | insize, posbits, p[-1], p[0], p[1], p[2], p[3], | 238 | insize, posbits, p[-1], p[0], p[1], p[2], p[3], |