diff options
Diffstat (limited to 'src/s_bsd.c')
-rw-r--r-- | src/s_bsd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/s_bsd.c b/src/s_bsd.c index 316d3f4..5eaae02 100644 --- a/src/s_bsd.c +++ b/src/s_bsd.c @@ -129,7 +129,8 @@ report_error(int level, const char* text, const char* who, int error) { who = (who) ? who : ""; - sendto_realops_flags(UMODE_DEBUG, level, text, who, strerror(error)); + sendto_realops_flags(UMODE_DEBUG, level, SEND_NOTICE, + text, who, strerror(error)); ilog(LOG_TYPE_IRCD, text, who, strerror(error)); } |