diff options
Diffstat (limited to '')
-rw-r--r-- | ignore.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ignore.c b/ignore.c index 5c14b7d..d65c35a 100644 --- a/ignore.c +++ b/ignore.c @@ -62,8 +62,7 @@ enum Heat ignoreCheck(enum Heat heat, const struct Message *msg) { char match[512]; snprintf( match, sizeof(match), "%s!%s@%s %s %s", - msg->nick, msg->user, msg->host, msg->cmd, - (msg->params[0] ? msg->params[0] : "") + msg->nick, msg->user, msg->host, msg->cmd, (msg->params[0] ?: "") ); for (size_t i = 0; i < ignore.len; ++i) { if (fnmatch(ignore.patterns[i], match, FNM_CASEFOLD)) continue; |