diff options
author | James Booth <boothj5@gmail.com> | 2013-08-19 14:38:16 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-08-19 14:38:16 +0100 |
commit | 0d239cfffbfac00490a44724eb84c9c07e062240 (patch) | |
tree | b0d07b49f89d09e3348fae0b00e85313774b07df /src/command/command.c | |
parent | 73eb4baf27d4b12704f6f7eceec24e8a43416256 (diff) | |
parent | ef511438b63ed7227558033250cb12dc3b84f98e (diff) | |
download | profani-tty-0d239cfffbfac00490a44724eb84c9c07e062240.tar.gz |
Merge branch 'master' into otr
Diffstat (limited to 'src/command/command.c')
-rw-r--r-- | src/command/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/command.c b/src/command/command.c index 1d87b7c9..4a9b75c5 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -1441,7 +1441,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) { @@ -2104,7 +2104,7 @@ _cmd_who(gchar **args, struct cmd_help_t help) } } - if (win_type != WIN_CONSOLE) { + if (win_type != WIN_CONSOLE && win_type != WIN_MUC) { status_bar_new(0); } |