aboutsummaryrefslogtreecommitdiffstats
path: root/irc.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2005-12-18 02:06:11 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2005-12-18 02:06:11 +0100
commit43f205b144412ab1186a545321b54792d92d2043 (patch)
tree882c9f1a4d6a036e84e050fcf6e34fe1e90ebb1b /irc.c
parenta03a9f376fe2fd1737ba7af6a87d99fe43a2a72e (diff)
Crashbug fix in new MSN Passport code (plus a fix to make the 005 reply actually work).
Diffstat (limited to 'irc.c')
-rw-r--r--irc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc.c b/irc.c
index 61d78bc9..cd84e3ca 100644
--- a/irc.c
+++ b/irc.c
@@ -1075,7 +1075,7 @@ void irc_login( irc_t *irc )
irc_reply( irc, 2, ":Host %s is running BitlBee " BITLBEE_VERSION " " ARCH "/" CPU ".", irc->myhost );
irc_reply( irc, 3, ":%s", IRCD_INFO );
irc_reply( irc, 4, "%s %s %s %s", irc->myhost, BITLBEE_VERSION, UMODES, CMODES );
- irc_reply( irc, 5, "PREFIX=(ov)@% CHANTYPES=#& CHANMODES=,,,%s NICKLEN=%d NETWORK=BitlBee CASEMAPPING=rfc1459 MAXTARGETS=1 WATCH=128 :are supported by this server", CMODES, MAX_NICK_LENGTH - 1 );
+ irc_reply( irc, 5, "PREFIX=(ov)@%% CHANTYPES=#& CHANMODES=,,,%s NICKLEN=%d NETWORK=BitlBee CASEMAPPING=rfc1459 MAXTARGETS=1 WATCH=128 :are supported by this server", CMODES, MAX_NICK_LENGTH - 1 );
irc_motd( irc );
irc_umode_set( irc, irc->myhost, "+" UMODE );