summaryrefslogtreecommitdiffstats
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/src/cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/src/cli.c b/cli/src/cli.c
index 2a7810d9743..25fe58568a5 100644
--- a/cli/src/cli.c
+++ b/cli/src/cli.c
@@ -380,7 +380,7 @@ cli_opt_parse (char *opt, struct cli_state *state)
oarg = strtail (opt, "timeout=");
if (oarg) {
if (!is_valid_int (oarg) || atoi(oarg) <= 0) {
- cli_err ("timeout value should be a postive integer");
+ cli_err ("timeout value should be a positive integer");
return -2; /* -2 instead of -1 to avoid unknown option
error */
}