diff options
Diffstat (limited to 'archival/bbunzip.c')
-rw-r--r-- | archival/bbunzip.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/archival/bbunzip.c b/archival/bbunzip.c index f91dd25eb..34a2e8e96 100644 --- a/archival/bbunzip.c +++ b/archival/bbunzip.c | |||
@@ -319,7 +319,7 @@ int uncompress_main(int argc UNUSED_PARAM, char **argv) | |||
319 | //config: select FEATURE_GZIP_DECOMPRESS | 319 | //config: select FEATURE_GZIP_DECOMPRESS |
320 | //config: help | 320 | //config: help |
321 | //config: gunzip is used to decompress archives created by gzip. | 321 | //config: gunzip is used to decompress archives created by gzip. |
322 | //config: You can use the `-t' option to test the integrity of | 322 | //config: You can use the '-t' option to test the integrity of |
323 | //config: an archive, without decompressing it. | 323 | //config: an archive, without decompressing it. |
324 | //config: | 324 | //config: |
325 | //config:config ZCAT | 325 | //config:config ZCAT |
@@ -391,9 +391,10 @@ int gunzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | |||
391 | int gunzip_main(int argc UNUSED_PARAM, char **argv) | 391 | int gunzip_main(int argc UNUSED_PARAM, char **argv) |
392 | { | 392 | { |
393 | #if ENABLE_FEATURE_GUNZIP_LONG_OPTIONS | 393 | #if ENABLE_FEATURE_GUNZIP_LONG_OPTIONS |
394 | applet_long_options = gunzip_longopts; | 394 | getopt32long(argv, "cfkvqdtn", gunzip_longopts); |
395 | #endif | 395 | #else |
396 | getopt32(argv, "cfkvqdtn"); | 396 | getopt32(argv, "cfkvqdtn"); |
397 | #endif | ||
397 | argv += optind; | 398 | argv += optind; |
398 | 399 | ||
399 | /* If called as zcat... | 400 | /* If called as zcat... |