CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Branch tags: u2_10_11_03
Commit time: 2002-12-04 18:15:10 UTC
Modified files:
Tag: u2_10_11_03
ircd/m_wallvoices.c
Log message:
Author: hikari <[EMAIL PROTECTED]>
Log message:
Fixed a problem with me basing this on a slightly older tree...ho hum
---------------------- diff included ----------------------
Index: ircu2.10/ircd/m_wallvoices.c
diff -u ircu2.10/ircd/m_wallvoices.c:1.1.2.1 ircu2.10/ircd/m_wallvoices.c:1.1.2.2
--- ircu2.10/ircd/m_wallvoices.c:1.1.2.1 Tue Dec 3 12:57:12 2002
+++ ircu2.10/ircd/m_wallvoices.c Wed Dec 4 10:14:59 2002
@@ -19,7 +19,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * $Id: m_wallvoices.c,v 1.1.2.1 2002/12/03 20:57:12 shad0w Exp $
+ * $Id: m_wallvoices.c,v 1.1.2.2 2002/12/04 18:14:59 shad0w Exp $
*/
/*
@@ -104,7 +104,7 @@
assert(0 != cptr);
assert(cptr == sptr);
- cli_flags(sptr) &= ~FLAGS_TS8;
+ ClrFlag(sptr, FLAG_TS8);
if (parc < 2 || EmptyString(parv[1]))
return send_reply(sptr, ERR_NORECIPIENT, "WALLVOICES");
----------------------- End of diff -----------------------