diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-05-11 08:17:57 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-05-11 08:17:57 +0000 |
commit | 82b3f86c43268d47680e0803d51035ae1540dd31 (patch) | |
tree | 7f2c945942488ed8a9e7528a2f7da3319cb9c996 /src | |
parent | 812ab4129f2b170eb2a7c34cd747ff314b0ea535 (diff) | |
download | weechat-82b3f86c43268d47680e0803d51035ae1540dd31.zip |
Fixed channel search for display of IRC error messages (case insensitive search for nick)
Diffstat (limited to 'src')
-rw-r--r-- | src/irc/irc-recv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/irc-recv.c b/src/irc/irc-recv.c index 71518a4ca..eaf4ab3c6 100644 --- a/src/irc/irc-recv.c +++ b/src/irc/irc-recv.c @@ -361,7 +361,7 @@ irc_cmd_recv_error (t_irc_server *server, char *host, char *nick, char *argument pos = strchr (arguments, ' '); if (pos) pos[0] = '\0'; - if (strcmp (arguments, server->nick) != 0) + if (strcasecmp (arguments, server->nick) != 0) { if (first) { |