diff options
author | James Booth <boothj5@gmail.com> | 2014-01-18 21:18:25 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-18 21:18:25 +0000 |
commit | b4e9905db971b67450bf4da63fd9ccff5de0aa69 (patch) | |
tree | 35ca07e4f285028c13a189f0e8774d939a53e7ce /src | |
parent | b62591903d891a8867e6db2fcef6faa8811c3c50 (diff) | |
download | profani-tty-b4e9905db971b67450bf4da63fd9ccff5de0aa69.tar.gz |
Added cmd_connect tests for argument validation
Diffstat (limited to 'src')
-rw-r--r-- | src/command/commands.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index 8a6f6d7b..71ab2ca7 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -91,9 +91,10 @@ cmd_connect(gchar **args, struct cmd_help_t help) altdomain = opt1val; altdomain_set = TRUE; } else if (strcmp(opt1, "port") == 0) { - if (_strtoi(opt1val, &port, 1, 65536) != 0) { + if (_strtoi(opt1val, &port, 1, 65535) != 0) { port = 0; - cons_show("Port must be in the range 1 to 65535."); + cons_show(""); + return TRUE; } else { port_set = TRUE; } @@ -121,9 +122,10 @@ cmd_connect(gchar **args, struct cmd_help_t help) cons_show("Usage: %s", help.usage); return TRUE; } - if (_strtoi(opt2val, &port, 1, 65536) != 0) { + if (_strtoi(opt2val, &port, 1, 65535) != 0) { port = 0; - cons_show("Port must be in the range 1 to 65535."); + cons_show(""); + return TRUE; } else { port_set = TRUE; } |