aboutsummaryrefslogtreecommitdiffstats
path: root/irc_commands.c
diff options
context:
space:
mode:
authorSven Moritz Hallberg <pesco@khjk.org>2010-06-03 13:00:45 +0200
committerSven Moritz Hallberg <pesco@khjk.org>2010-06-03 13:00:45 +0200
commit814aa52228c7cad1d036c1a6dc5ea03cce61c048 (patch)
tree7db06b9191f00b086f25789a0a040d15cef580cf /irc_commands.c
parent5f8ab6a9adf09ea7c07f728227bdb6d3953588f1 (diff)
parentf4bcc223fea70de8555bbc4d2caf48e0476c0e13 (diff)
merge in bitlbee 1.2.6
Diffstat (limited to 'irc_commands.c')
-rw-r--r--irc_commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_commands.c b/irc_commands.c
index 012cf171..28142a12 100644
--- a/irc_commands.c
+++ b/irc_commands.c
@@ -497,7 +497,7 @@ static void irc_cmd_whois( irc_t *irc, char **cmd )
else if( u->away )
irc_reply( irc, 301, "%s :%s", u->nick, u->away );
if( u->status_msg )
- irc_reply( irc, 333, "%s :Status: %s", u->nick, u->status_msg );
+ irc_reply( irc, 320, "%s :%s", u->nick, u->status_msg );
irc_reply( irc, 318, "%s :End of /WHOIS list", nick );
}