diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-06-07 16:24:17 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-06-07 16:24:17 +0000 |
commit | 507ae028c5cfd8800d08e32109611f9381563537 (patch) | |
tree | 302266fd47a7e1f94f01b88a952ade688a6a4e59 /src/irc/irc-recv.c | |
parent | 5235fd119cfd97d3c7514eeef60cdea586f76b25 (diff) | |
download | weechat-507ae028c5cfd8800d08e32109611f9381563537.zip |
Fixed problem with bnc (now connected to server when receiving 001, not 004) (bug #16760)
Diffstat (limited to 'src/irc/irc-recv.c')
-rw-r--r-- | src/irc/irc-recv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/irc-recv.c b/src/irc/irc-recv.c index 73b8f6fae..a28478207 100644 --- a/src/irc/irc-recv.c +++ b/src/irc/irc-recv.c @@ -2811,11 +2811,11 @@ irc_cmd_recv_topic (t_irc_server *server, char *host, char *nick, char *argument } /* - * irc_cmd_recv_004: '004' command (connected to irc server) + * irc_cmd_recv_001: '001' command (connected to irc server) */ int -irc_cmd_recv_004 (t_irc_server *server, char *host, char *nick, char *arguments) +irc_cmd_recv_001 (t_irc_server *server, char *host, char *nick, char *arguments) { char *pos; char **commands, **ptr; |