From 34307035a3cee02a71ae3a5d216aae0f82475b5e Mon Sep 17 00:00:00 2001 From: Aaron Ball Date: Tue, 27 Aug 2019 08:17:28 -0600 Subject: Remove -l,--lower switch This is default and we must have at least one character set always. --- src/main.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main.c b/src/main.c index f31f47a..faa939b 100644 --- a/src/main.c +++ b/src/main.c @@ -38,7 +38,6 @@ void usage() { " -0,--no-numerals Include at least one numeral in output\n" " -A,--no-capitalize Include at least one numeral in output\n" " -c,--capitalize Include at least one capital letter in output\n" - " -l,--lower Include at least one lower case letter in output\n" " -n,--numerals Include at least one numeral in output\n" " -y,--symbols Include at least one symbol in output\n" " -i,--i18n Include at least one international letter in output\n" @@ -87,9 +86,6 @@ int main(int argc, char* argv[]) { } else if(strcmp(argv[i], "-c") == 0 || strcmp(argv[i], "--capitalize") == 0) { i18n_set_add(set, I18N_TYPE_ASCII_UPPER); - } else if(strcmp(argv[i], "-l") == 0 || strcmp(argv[i], "--lower") == 0) { - i18n_set_add(set, I18N_TYPE_ASCII_LOWER); - } else if(strcmp(argv[i], "-n") == 0 || strcmp(argv[i], "--numerals") == 0) { i18n_set_add(set, I18N_TYPE_ASCII_NUMERALS); -- cgit v1.2.3