diff options
author | James Booth <boothj5@gmail.com> | 2013-06-30 13:41:23 -0700 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-06-30 13:41:23 -0700 |
commit | 79e3593111a871f424e1891987626372c6a239dd (patch) | |
tree | 86d718d5b89683de21f835d3b5e75bcfe1f2a2ef /src | |
parent | e12ede6cd8977da8545e2486f62f6d9f575a5c88 (diff) | |
parent | 1f7e7e84471f65a3a7c13b8ac2dab888a952ea5f (diff) | |
download | profani-tty-79e3593111a871f424e1891987626372c6a239dd.tar.gz |
Merge pull request #197 from SamWhited/patch-1
Fix a small typo
Diffstat (limited to 'src')
-rw-r--r-- | src/command/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/command.c b/src/command/command.c index 50f7b08f..109447f1 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -1463,7 +1463,7 @@ _cmd_account(gchar **args, struct cmd_help_t help) cons_show(""); } else if (strcmp(property, "status") == 0) { if (!valid_resource_presence_string(value) && (strcmp(value, "last") != 0)) { - cons_show("Invalud status: %s", value); + cons_show("Invalid status: %s", value); } else { accounts_set_login_presence(account_name, value); cons_show("Updated login status for account %s: %s", account_name, value); |