summaryrefslogtreecommitdiffstats
path: root/programs/lz4cli.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-03-15 19:47:49 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-03-15 19:47:49 (GMT)
commitc9a2b14113826368f7c8e1476de5252b525a58d6 (patch)
tree1437b672e87c5ec640e0f545a9ba3eea4d3762ed /programs/lz4cli.c
parent207aafd0dce2723e301a0efeb019bd03b27f50eb (diff)
downloadlz4-c9a2b14113826368f7c8e1476de5252b525a58d6.zip
lz4-c9a2b14113826368f7c8e1476de5252b525a58d6.tar.gz
lz4-c9a2b14113826368f7c8e1476de5252b525a58d6.tar.bz2
removed -s command from lz4c specific list of legacy commands
Diffstat (limited to 'programs/lz4cli.c')
-rw-r--r--programs/lz4cli.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index 9d9e309..84bfa84 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -187,7 +187,6 @@ static int usage_advanced(void)
DISPLAY( " -c1 : high compression\n");
DISPLAY( " -hc : high compression\n");
DISPLAY( " -y : overwrite output without prompting \n");
- DISPLAY( " -s : suppress warnings \n");
#endif /* ENABLE_LZ4C_LEGACY_OPTIONS */
EXTENDED_HELP;
return 0;
@@ -314,7 +313,6 @@ int main(int argc, char** argv)
if ((argument[0]=='c') && (argument[1]=='1')) { cLevel=9; argument++; continue; } /* -c1 (high compression) */
if ((argument[0]=='h') && (argument[1]=='c')) { cLevel=9; argument++; continue; } /* -hc (high compression) */
if (*argument=='y') { LZ4IO_setOverwrite(1); continue; } /* -y (answer 'yes' to overwrite permission) */
- if (*argument=='s') { displayLevel=1; continue; } /* -s (silent mode) */
#endif /* ENABLE_LZ4C_LEGACY_OPTIONS */
if ((*argument>='0') && (*argument<='9'))