about summary refs log tree commit diff stats
path: root/src/command/command.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-08-19 13:27:16 +0100
committerJames Booth <boothj5@gmail.com>2013-08-19 13:30:16 +0100
commitdd2e1ad8a8800d875f0643fe80fd48f69a388949 (patch)
treeded5d1f581213447976f9991a21cce152b742937 /src/command/command.c
parentb1768f942c086410abfb7ca03e3a20fe472fafe6 (diff)
downloadprofani-tty-dd2e1ad8a8800d875f0643fe80fd48f69a388949.tar.gz
Fix message for /account when account doesn't exist
Diffstat (limited to 'src/command/command.c')
-rw-r--r--src/command/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/command.c b/src/command/command.c
index d8b955a2..4bd2812b 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -1434,7 +1434,7 @@ _cmd_account(gchar **args, struct cmd_help_t help)
             char *value = args[3];
 
             if (!accounts_account_exists(account_name)) {
-                cons_show("Account %s doesn't exist");
+                cons_show("Account %s doesn't exist", account_name);
                 cons_show("");
             } else {
                 if (strcmp(property, "jid") == 0) {