CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Branch tags: u2_10_11_06
Commit time: 2003-11-22 12:40:02 UTC
Modified files:
Tag: u2_10_11_06
ChangeLog ircd/res.c
Log message:
Author: Isomer <[EMAIL PROTECTED]>
Log message:
Fix /dns error with \x (C compilers suck)
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.290.2.129.2.17 ircu2.10/ChangeLog:1.290.2.129.2.18
--- ircu2.10/ChangeLog:1.290.2.129.2.17 Tue Nov 18 02:14:09 2003
+++ ircu2.10/ChangeLog Sat Nov 22 04:39:52 2003
@@ -4,6 +4,9 @@
* ircd/m_whois.c: Fix lost ! from ShowChannel()
+2003-11-18 Isomer <[EMAIL PROTECTED]>
+ * ircd/res.c: Minor cosmetic typo.
+
2003-11-17 Entrope <[EMAIL PROTECTED]>
* ircd/engine_epoll.c: #include <sys/types.h>, which is
reportedly necessary on certain RedHat releases.
Index: ircu2.10/ircd/res.c
diff -u ircu2.10/ircd/res.c:1.19.2.5.14.1 ircu2.10/ircd/res.c:1.19.2.5.14.2
--- ircu2.10/ircd/res.c:1.19.2.5.14.1 Tue Nov 18 02:05:17 2003
+++ ircu2.10/ircd/res.c Sat Nov 22 04:39:52 2003
@@ -4,7 +4,7 @@
* shape or form. The author takes no responsibility for any damage or loss
* of property which results from the use of this software.
*
- * $Id: res.c,v 1.19.2.5.14.1 2003/11/18 10:05:17 isomer Exp $
+ * $Id: res.c,v 1.19.2.5.14.2 2003/11/22 12:39:52 isomer Exp $
*
* July 1999 - Rewrote a bunch of stuff here. Change hostent builder code,
* added callbacks and reference counting of returned hostents.
@@ -1767,10 +1767,10 @@
}
return 0;
}
- sendcmdto_one(&me, CMD_NOTICE, sptr,"%C :\x02Cache\x02: "
+ sendcmdto_one(&me, CMD_NOTICE, sptr,"%C :""\x02""Cache\x02: "
"Adds %d Dels %d Expires %d Lookups %d "
- "Hits(addr/name)) %d/%d "
- "Cu %d", sptr,
+ "Hits(addr/name) %d/%d "
+ "Updates %d", sptr,
cainfo.ca_adds, cainfo.ca_dels, cainfo.ca_expires,
cainfo.ca_lookups, cainfo.ca_na_hits, cainfo.ca_nu_hits,
cainfo.ca_updates);
----------------------- End of diff -----------------------