1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 07:16:37 +02:00

Added missing "return 0" in handler for IRC command 221

This commit is contained in:
Sebastien Helleu
2005-09-11 16:39:37 +00:00
parent da7df57b1a
commit c346216e34
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -2359,6 +2359,8 @@ irc_cmd_recv_221 (t_irc_server *server, char *host, char *nick, char *arguments)
WEECHAT_ERROR, "221");
return -1;
}
return 0;
}
/*
+2
View File
@@ -2359,6 +2359,8 @@ irc_cmd_recv_221 (t_irc_server *server, char *host, char *nick, char *arguments)
WEECHAT_ERROR, "221");
return -1;
}
return 0;
}
/*