diff options
author | James Booth <boothj5@gmail.com> | 2014-01-18 22:50:17 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-18 22:50:17 +0000 |
commit | 91d4097df96f1db7ce24920e34dfa4e4aa1f7b96 (patch) | |
tree | 8ae3cb81da52ffeaf5da4a9288a588a42f0efa7d /src | |
parent | 21f0bd04a8a994dc71e45b8d4c8e98dcc225c68a (diff) | |
download | profani-tty-91d4097df96f1db7ce24920e34dfa4e4aa1f7b96.tar.gz |
Added cmd_connect test for repeated port property
Diffstat (limited to 'src')
-rw-r--r-- | src/command/commands.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index 6c3f6874..27ecf9c5 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -110,6 +110,11 @@ cmd_connect(gchar **args, struct cmd_help_t help) cons_show(""); return TRUE; } + if (port_set && strcmp("port", opt2) == 0) { + cons_show("Usage: %s", help.usage); + cons_show(""); + return TRUE; + } if (opt2val == NULL) { cons_show("Usage: %s", help.usage); cons_show(""); |