]> andersk Git - moira.git/commitdiff
Make "addalias" and "deletealias" the long form of the -a and -d
authorzacheiss <zacheiss>
Sat, 20 Dec 2003 02:55:49 +0000 (02:55 +0000)
committerzacheiss <zacheiss>
Sat, 20 Dec 2003 02:55:49 +0000 (02:55 +0000)
options, since that's what's documented.

clients/stella/stella.c

index 312a248cf389d4c12e55a0094760e8ece4cbf059..8245c2c231bd0c879bd251aafd7347dc7e2fd0cd 100644 (file)
@@ -243,7 +243,7 @@ int main(int argc, char **argv)
            } else
              usage(argv);
          }
-         else if (argis("a", "aliasadd")) {
+         else if (argis("a", "addalias")) {
            if (arg - argv < argc - 1) {
              arg++;
              alias_add_queue=add_to_string_list(alias_add_queue, *arg);
@@ -251,7 +251,7 @@ int main(int argc, char **argv)
              usage(argv);
            update_alias_flag++;
          }
-         else if (argis("d", "aliasdelete")) {
+         else if (argis("d", "deletealias")) {
            if (arg - argv < argc - 1) {
              arg++;
              alias_remove_queue=add_to_string_list(alias_remove_queue, *arg);
This page took 0.291421 seconds and 5 git commands to generate.