From 7cdce7b148439d6808feff69ee6ad56d530624d0 Mon Sep 17 00:00:00 2001 From: "Kevin L. Mitchell" Date: Sun, 10 Jun 2001 11:58:40 +0000 Subject: [PATCH] Author: Kev 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 | 3 +++ ircd/send.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8d337c8..70ca852 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-06-10 Kevin L. Mitchell + * 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 diff --git a/ircd/send.c b/ircd/send.c index bf8335d..cce22b1 100644 --- a/ircd/send.c +++ b/ircd/send.c @@ -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); -- 2.20.1