From: zacheiss Date: Sat, 20 Dec 2003 02:55:49 +0000 (+0000) Subject: Make "addalias" and "deletealias" the long form of the -a and -d X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/commitdiff_plain/88cced27a561f66d06a2f005b7311fbf4131740b Make "addalias" and "deletealias" the long form of the -a and -d options, since that's what's documented. --- diff --git a/clients/stella/stella.c b/clients/stella/stella.c index 312a248c..8245c2c2 100644 --- a/clients/stella/stella.c +++ b/clients/stella/stella.c @@ -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);