Author: Kev <klmitch@mit.edu>
authorKevin L. Mitchell <klmitch@mit.edu>
Sun, 10 Jun 2001 11:58:40 +0000 (11:58 +0000)
committerKevin L. Mitchell <klmitch@mit.edu>
Sun, 10 Jun 2001 11:58:40 +0000 (11:58 +0000)
Log message:

Noticed that WALLOPS wasn't being put into the server's priority queues;
fixed.

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

ChangeLog
ircd/send.c

index 8d337c83e97c20917dc86dba8c3f4a7149b2ed09..70ca85244e1f25c61aceba5d755f23035a7279fc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2001-06-10  Kevin L. Mitchell  <klmitch@mit.edu>
 
+       * ircd/send.c (sendcmdto_flag_butone): oops; /wallops should be
+       put in the server's priority queue, too...
+
        * ircd/ircd.c: don't check LPATH for accessibility at all
 
 2001-06-08  Kevin L. Mitchell  <klmitch@mit.edu>
index bf8335dc7b26ab951f409a54c22be4b9369947d6..cce22b13f1a5a3ed13f0ba64e9d7c6b15a165942 100644 (file)
@@ -504,7 +504,7 @@ void sendcmdto_flag_butone(struct Client *from, const char *cmd,
   for (lp = cli_serv(&me)->down; lp; lp = lp->next) {
     if (one && lp->value.cptr == cli_from(one))
       continue;
-    send_buffer(lp->value.cptr, mb, 0);
+    send_buffer(lp->value.cptr, mb, 1);
   }
 
   msgq_clean(mb);