1
0
mirror of https://github.com/irssi/irssi.git synced 2024-08-04 03:34:18 -04:00

377 numeric seems to be used as motd by some servers..

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2134 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-11-20 21:19:35 +00:00 committed by cras
parent cd09cd6332
commit d133a90eaa

View File

@ -446,6 +446,7 @@ static void event_whois_realhost(IRC_SERVER_REC *server, const char *data)
if (strcmp(txt_real, "real") != 0 ||
strcmp(txt_hostname, "hostname") != 0) {
/* <yournick> <nick> :... from <hostname> */
g_free(params);
params = event_get_params(data, 3, NULL, &nick, &hostname);
from = strstr(hostname, "from ");
@ -459,15 +460,23 @@ static void event_whois_realhost(IRC_SERVER_REC *server, const char *data)
static void event_whois_usermode(IRC_SERVER_REC *server, const char *data)
{
char *params, *txt_usermodes, *nick, *usermode;
char *params, *txt_usermodes, *nick, *usermode, *text;
g_return_if_fail(data != NULL);
params = event_get_params(data, 4, NULL, &txt_usermodes,
&nick, &usermode);
printformat(server, nick, MSGLEVEL_CRAP,
IRCTXT_WHOIS_USERMODE, nick, usermode);
if (strcmp(txt_usermodes, "usermodes") == 0) {
/* <yournick> usermodes <nick> usermode */
printformat(server, nick, MSGLEVEL_CRAP,
IRCTXT_WHOIS_USERMODE, nick, usermode);
} else {
/* some servers use this as motd too.. */
g_free(params);
params = event_get_params(data, 2, NULL, &text);
printtext(server, NULL, MSGLEVEL_CRAP, "%s", text);
}
g_free(params);
}