From: Yann Collet Date: Sun, 15 Mar 2015 19:47:49 +0000 (+0100) Subject: removed -s command from lz4c specific list of legacy commands X-Git-Tag: upstream/1.9.3~248^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c9a2b14113826368f7c8e1476de5252b525a58d6;p=platform%2Fupstream%2Flz4.git removed -s command from lz4c specific list of legacy commands --- 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'))