mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
gzip: add support for --no-name long option
Add support for --no-name long option. Just silently ignore it like the short -n option. This allows to use busybox gzip with Lynx browser. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
fbe50cf6bc
commit
cddc98eab7
2 changed files with 2 additions and 0 deletions
|
|
@ -335,6 +335,7 @@ static const char gunzip_longopts[] ALIGN1 =
|
|||
"to-stdout\0" No_argument "c"
|
||||
"force\0" No_argument "f"
|
||||
"test\0" No_argument "t"
|
||||
"no-name\0" No_argument "n"
|
||||
;
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -2160,6 +2160,7 @@ static const char gzip_longopts[] ALIGN1 =
|
|||
"quiet\0" No_argument "q"
|
||||
"fast\0" No_argument "1"
|
||||
"best\0" No_argument "9"
|
||||
"no-name\0" No_argument "n"
|
||||
;
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue