mirror of
https://github.com/sheumann/hush.git
synced 2025-01-11 08:29:54 +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
@ -335,6 +335,7 @@ static const char gunzip_longopts[] ALIGN1 =
|
|||||||
"to-stdout\0" No_argument "c"
|
"to-stdout\0" No_argument "c"
|
||||||
"force\0" No_argument "f"
|
"force\0" No_argument "f"
|
||||||
"test\0" No_argument "t"
|
"test\0" No_argument "t"
|
||||||
|
"no-name\0" No_argument "n"
|
||||||
;
|
;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -2160,6 +2160,7 @@ static const char gzip_longopts[] ALIGN1 =
|
|||||||
"quiet\0" No_argument "q"
|
"quiet\0" No_argument "q"
|
||||||
"fast\0" No_argument "1"
|
"fast\0" No_argument "1"
|
||||||
"best\0" No_argument "9"
|
"best\0" No_argument "9"
|
||||||
|
"no-name\0" No_argument "n"
|
||||||
;
|
;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user