Remove duplicate end-of-stats replies for /stats iauth and /stats iauthconf.
authorMichael Poole <mdpoole@troilus.org>
Thu, 9 Aug 2007 03:46:20 +0000 (03:46 +0000)
committerMichael Poole <mdpoole@troilus.org>
Thu, 9 Aug 2007 03:46:20 +0000 (03:46 +0000)
git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/branches/u2_10_12_branch@1824 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

ChangeLog
ircd/s_auth.c

index bcdd6c5e0fcc417ef1ca924b852b0f7318c3e2cd..bf5b31bc7d418b32399d52221a9ec9eb77459557 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2007-08-08  Michael Poole <mdpoole@troilus.org>
+
+       * 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 <mdpoole@troilus.org>
+
+       * include/res.h (irc_in_addr_is_ipv4): Fix classification of
+       addresses like 0.0.0.0.
+
 2007-07-21  Perry Lorier <isomer@undernet.org>
 
        * ircd/s_user.c: Move set_nick_name() to use set_user_mode(),
index 226420278487a89a359048e26d115db378aa0b8b..68e85ae965e2bbdffbb03f5674e3a12a3b3e26e4 100644 (file)
@@ -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.");
 }