From: Michael Poole Date: Thu, 9 Aug 2007 03:46:20 +0000 (+0000) Subject: Remove duplicate end-of-stats replies for /stats iauth and /stats iauthconf. X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=commitdiff_plain;h=ee7bed6b1ae7fcf9e4b85cb33bb2e517d4759cf2 Remove duplicate end-of-stats replies for /stats iauth and /stats iauthconf. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/branches/u2_10_12_branch@1824 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/ChangeLog b/ChangeLog index bcdd6c5..bf5b31b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2007-08-08 Michael Poole + + * ircd/s_auth.c (report_iauth_conf): Remove end-of-stats message; + m_stats() already does that. + + (report_iauth_stats): Likewise. + +2007-08-08 Michael Poole + + * include/res.h (irc_in_addr_is_ipv4): Fix classification of + addresses like 0.0.0.0. + 2007-07-21 Perry Lorier * ircd/s_user.c: Move set_nick_name() to use set_user_mode(), diff --git a/ircd/s_auth.c b/ircd/s_auth.c index 2264202..68e85ae 100644 --- a/ircd/s_auth.c +++ b/ircd/s_auth.c @@ -2201,7 +2201,6 @@ void report_iauth_conf(struct Client *cptr, const struct StatDesc *sd, char *par send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":%s", link->value.cp); } - send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":End of IAuth configuration."); } /** Report active iauth's statistics to \a cptr. @@ -2218,5 +2217,4 @@ void report_iauth_conf(struct Client *cptr, const struct StatDesc *sd, char *par send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":%s", link->value.cp); } - send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":End of IAuth statistics."); }