]> jfr.im git - irc/quakenet/snircd-patchqueue.git/blame - snomaskprefix.patch
Remove topic_reveal.patch. This has been fixed in IRCU and ircu patch is correct...
[irc/quakenet/snircd-patchqueue.git] / snomaskprefix.patch
CommitLineData
edb26b39
P
1# HG changeset patch
2# Parent dc95b396a29db7914234872063776c11336d13d0
3
4diff -r dc95b396a29d ircd/send.c
5--- a/ircd/send.c Mon Jul 15 00:08:03 2013 +0100
6+++ b/ircd/send.c Mon Jul 15 00:09:00 2013 +0100
7@@ -892,7 +892,7 @@
8 {
9 struct VarData vd;
10 struct MsgBuf *mb;
11- int i = 0; /* so that 1 points to opsarray[0] */
12+ unsigned int i = 0; /* so that 1 points to opsarray[0] */
13 struct SLink *opslist;
14
15 while ((mask >>= 1))
16@@ -907,7 +907,7 @@
17 */
18 vd.vd_format = pattern;
19 va_copy(vd.vd_args, vl);
20- mb = msgq_make(0, ":%s " MSG_NOTICE " * :*** Notice -- %v", cli_name(&me),
21+ mb = msgq_make(0, ":%s " MSG_NOTICE " * :*** Notice -%02u- %v", cli_name(&me), i,
22 &vd);
23
24 for (; opslist; opslist = opslist->next)