summaryrefslogtreecommitdiff
path: root/src/ircd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ircd.c')
-rw-r--r--src/ircd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ircd.c b/src/ircd.c
index 26a36e259..13e1ed2dc 100644
--- a/src/ircd.c
+++ b/src/ircd.c
@@ -47,7 +47,7 @@ void anope_SendNumeric(const char *source, int numeric, const char *dest, const
vsnprintf(buf, BUFSIZE - 1, fmt, args);
va_end(args);
}
- ircdproto->SendNumeric(source, numeric, dest, *buf ? buf : NULL);
+ ircdproto->SendNumeric(source, numeric, dest, buf);
}
/**