1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-07 02:54:19 -04:00

Fix return value from nick_match_msg_everywhere, remove #include 'settings.h'

This commit is contained in:
Jari Matilainen 2015-09-22 23:16:41 +02:00
parent b5c3e90802
commit 3f2eaf1d3a

View File

@ -21,7 +21,6 @@
#include "module.h"
#include "signals.h"
#include "misc.h"
#include "settings.h"
#include "servers.h"
#include "channels.h"
@ -577,12 +576,7 @@ int nick_match_msg_everywhere(CHANNEL_REC *channel, const char *msg, const char
g_return_val_if_fail(nick != NULL, FALSE);
g_return_val_if_fail(msg != NULL, FALSE);
char *ret = stristr_full(msg, nick);
if (ret != NULL)
return TRUE;
return FALSE;
return stristr_full(msg, nick) != NULL;
}
void nicklist_init(void)