summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@oper.io>2019-08-27 08:17:28 -0600
committerAaron Ball <nullspoon@oper.io>2019-08-27 08:17:28 -0600
commit34307035a3cee02a71ae3a5d216aae0f82475b5e (patch)
tree18cde37ee7791c01d3161c1caf328b675c4ccac3
parentef2e4b3548786141f4ac871da96978161af7119c (diff)
downloadupwgen-34307035a3cee02a71ae3a5d216aae0f82475b5e.tar.gz
upwgen-34307035a3cee02a71ae3a5d216aae0f82475b5e.tar.xz
Remove -l,--lower switch
This is default and we must have at least one character set always.
-rw-r--r--src/main.c4
1 files changed, 0 insertions, 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);

Generated by cgit