From dad582cd57a26e98d5be58af6b52952d869d2e31 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 21 May 2016 16:35:43 -0500 Subject: [PATCH] gzip: -s and -L are not supported options --- programs/gzip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/gzip.c b/programs/gzip.c index 874fdb6..c3b0aa5 100644 --- a/programs/gzip.c +++ b/programs/gzip.c @@ -46,13 +46,13 @@ struct options { const tchar *suffix; }; -static const tchar *const optstring = T("1::2::3::4::5::6::7::8::9::cdfhkL:s:S:V"); +static const tchar *const optstring = T("1::2::3::4::5::6::7::8::9::cdfhkS:V"); static void show_usage(FILE *fp) { fprintf(fp, -"Usage: %"TS" [-LEVEL] [-cdfhkV] [-s SIZE] [-S SUF] FILE...\n" +"Usage: %"TS" [-LEVEL] [-cdfhkV] [-S SUF] FILE...\n" "Compress or decompress the specified FILEs.\n" "\n" "Options:\n"