summaryrefslogtreecommitdiff
path: root/src/send.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/send.c')
-rw-r--r--src/send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/send.c b/src/send.c
index 4f4a9aeb1..79e8f5e68 100644
--- a/src/send.c
+++ b/src/send.c
@@ -72,9 +72,9 @@ void notice_server(char *source, Server * s, char *fmt, ...)
vsnprintf(buf, BUFSIZE - 1, fmt, args);
if (NSDefFlags & NI_MSG) {
- anope_cmd_serv_privmsg(source, s->name, buf);
+ anope_SendGlobalPrivmsg(source, s->name, buf);
} else {
- anope_cmd_serv_notice(source, s->name, buf);
+ anope_SendGlobalNotice(source, s->name, buf);
}
va_end(args);
}