diff options
author | James Booth <boothj5@gmail.com> | 2013-07-14 23:31:02 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-07-14 23:31:02 +0100 |
commit | dd2e3a0bdf958a84f063a62b2fbf6ff7c04c0b8d (patch) | |
tree | cd9684e3931dceec0662eba010185256b51c25f8 /src/command | |
parent | 7f82dc42f593f6410e4d0058add4b91112047e63 (diff) | |
parent | 0b221bde2055766410b3392edd958ef45e47671c (diff) | |
download | profani-tty-dd2e3a0bdf958a84f063a62b2fbf6ff7c04c0b8d.tar.gz |
Merge remote-tracking branch 'dmitry/fixes'
Diffstat (limited to 'src/command')
-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 60fe6d6d..f15de124 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -2780,7 +2780,7 @@ _cmd_rooms(gchar **args, struct cmd_help_t help) jabber_conn_status_t conn_status = jabber_get_connection_status(); if (conn_status != JABBER_CONNECTED) { - cons_show("You are currenlty connect."); + cons_show("You are not currenlty connected."); return TRUE; } @@ -2804,7 +2804,7 @@ _cmd_disco(gchar **args, struct cmd_help_t help) jabber_conn_status_t conn_status = jabber_get_connection_status(); if (conn_status != JABBER_CONNECTED) { - cons_show("You are currenlty connect."); + cons_show("You are not currenlty connected."); return TRUE; } |