Committer : entrope
CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Branch tags: u2_10_12_branch
Commit time: 2006-01-01 04:39:17 UTC
Modified files:
Tag: u2_10_12_branch
ChangeLog ircd/m_whowas.c
Log message:
Fix bug #1394480 (WHOWAS missing printf argument for real IP).
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.710.2.54 ircu2.10/ChangeLog:1.710.2.55
--- ircu2.10/ChangeLog:1.710.2.54 Fri Dec 30 17:41:40 2005
+++ ircu2.10/ChangeLog Sat Dec 31 20:39:06 2005
@@ -1,3 +1,8 @@
+2005-12-31 Michael Poole <[EMAIL PROTECTED]>
+
+ * ircd/m_whowas.c (m_whowas): Mention that IP is untracked in WHOWAS.
+ Spotted by Progs.
+
2005-12-30 Michael Poole <[EMAIL PROTECTED]>
* ircd/m_topic.c: Remove block comment about sptr, cptr, etc.
Index: ircu2.10/ircd/m_whowas.c
diff -u ircu2.10/ircd/m_whowas.c:1.12 ircu2.10/ircd/m_whowas.c:1.12.2.1
--- ircu2.10/ircd/m_whowas.c:1.12 Mon Apr 25 14:25:20 2005
+++ ircu2.10/ircd/m_whowas.c Sat Dec 31 20:39:07 2005
@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * $Id: m_whowas.c,v 1.12 2005/04/25 21:25:20 entrope Exp $
+ * $Id: m_whowas.c,v 1.12.2.1 2006/01/01 04:39:07 entrope Exp $
*/
/*
@@ -139,7 +139,7 @@
send_reply(sptr, RPL_WHOWASUSER, temp->name, temp->username,
temp->hostname, temp->realname);
if (IsAnOper(sptr) && temp->realhost)
- send_reply(sptr, RPL_WHOISACTUALLY, temp->name, temp->username,
temp->realhost);
+ send_reply(sptr, RPL_WHOISACTUALLY, temp->name, temp->username,
temp->realhost, "<untracked>");
send_reply(sptr, RPL_WHOISSERVER, temp->name,
(feature_bool(FEAT_HIS_WHOIS_SERVERNAME) && !IsOper(sptr)) ?
feature_str(FEAT_HIS_SERVERNAME) :
----------------------- End of diff -----------------------
_______________________________________________
Patches mailing list
[email protected]
http://undernet.sbg.org/mailman/listinfo/patches