Author: Kev <klmitch@mit.edu>
authorKevin L. Mitchell <klmitch@mit.edu>
Wed, 26 Apr 2000 20:58:38 +0000 (20:58 +0000)
committerKevin L. Mitchell <klmitch@mit.edu>
Wed, 26 Apr 2000 20:58:38 +0000 (20:58 +0000)
Log message:

* ircd/send.c (sendcmdto_flag_butone): explicitly send WALLOPS to
local users

git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@205 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

ChangeLog
ircd/send.c

index b304c0b842da1f4d25fdf5d14455ae1e60a94960..35e6154740bfca53cfb8cdeded11daeb9e5b0aaf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-04-26  Kevin L. Mitchell  <klmitch@mit.edu>
 
+       * ircd/send.c (sendcmdto_flag_butone): explicitly send WALLOPS to
+       local users
+
        * ircd/s_serv.c (exit_new_server): rewrite exit_new_server to be a
        little less brain-dead
 
 #
 # ChangeLog for ircu2.10.11
 #
-# $Id: ChangeLog,v 1.103 2000-04-26 20:14:56 kev Exp $
+# $Id: ChangeLog,v 1.104 2000-04-26 20:58:37 kev Exp $
 #
 # Insert new changes at beginning of the change list.
 #
index 17bbcf5e6b70a128675c5e47a1615a4fa4fc3fc6..f65c4aaa07bcfbe429eade460aec2207d8ca1bbc 100644 (file)
@@ -1230,7 +1230,8 @@ void sendcmdto_flag_butone(struct Client *from, const char *cmd,
 
   /* Build buffer to send to users */
   va_start(vd.vd_args, pattern);
-  ircd_snprintf(0, userbuf, sizeof(userbuf) - 2, "%:#C %s %v", from, cmd, &vd);
+  ircd_snprintf(0, userbuf, sizeof(userbuf) - 2, "%:#C " MSG_WALLOPS " %v",
+               from, cmd, &vd);
   va_end(vd.vd_args);
 
   /* Build buffer to send to servers */