[NeoStats-Devel] [Commits] r363 - branches/3.0
[email protected] Sat, 13 Aug 2005 01:53:59 +1000
| Newsgroups | gmane.comp.neostats.devel |
|---|---|
| Message-ID | <[email protected]> |
Author: Fish
Date: Fri Aug 12 23:53:52 2005
New Revision: 363
Modified:
branches/3.0/scan.c
Log:
fix mirc code scanning
Modified: branches/3.0/scan.c
==============================================================================
--- branches/3.0/scan.c (original)
+++ branches/3.0/scan.c Fri Aug 12 23:53:52 2005
@@ -377,16 +377,19 @@
int ScanCTCPVersion(Client *u, char* buf)
{
+ strip_mirc_codes(buf);
return Scan(DET_CTCP, u, buf);
}
int ScanPrivmsg(Client *u, char* buf)
{
+ strip_mirc_codes(buf);
return Scan(DET_MSG, u, buf);
}
int ScanChanMsg(Client *u, char* buf)
{
+ strip_mirc_codes(buf);
return Scan(DET_CHANMSG, u, buf);
}
@@ -397,16 +400,19 @@
int ScanAwayMsg(Client* u, char* buf)
{
+ strip_mirc_codes(buf);
return Scan(DET_AWAYMSG, u, buf);
}
int ScanQuitMsg(Client* u, char* buf)
{
+ strip_mirc_codes(buf);
return Scan(DET_QUITMSG, u, buf);
}
int ScanTopic(Client* u, char* buf)
{
+ strip_mirc_codes(buf);
return Scan(DET_TOPIC, u, buf);
}