CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Branch tags: u2_10_11_06
Commit time: 2003-11-06 10:33:04 UTC
Modified files:
Tag: u2_10_11_06
ChangeLog include/patchlevel.h ircd/s_stats.c
Log message:
Author: Isomer <[EMAIL PROTECTED]>
Log message:
Bump patchlevel to .pre1
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.290.2.129.2.9 ircu2.10/ChangeLog:1.290.2.129.2.10
--- ircu2.10/ChangeLog:1.290.2.129.2.9 Thu Nov 6 02:26:32 2003
+++ ircu2.10/ChangeLog Thu Nov 6 02:32:53 2003
@@ -1,4 +1,10 @@
2003-11-06 Isomer <[EMAIL PROTECTED]>
+ * include/patchlevel.h: Bump to .pre1
+
+2003-11-06 Isomer <[EMAIL PROTECTED]>
+ * ircd/s_stats.c: Show "Allowed" in /stats H
+
+2003-11-06 Isomer <[EMAIL PROTECTED]>
* ircd/s_misc.c: Change the logging format (Closes: 836413)
2003-11-06 Isomer <[EMAIL PROTECTED]>
Index: ircu2.10/include/patchlevel.h
diff -u ircu2.10/include/patchlevel.h:1.10.4.64.2.1
ircu2.10/include/patchlevel.h:1.10.4.64.2.2
--- ircu2.10/include/patchlevel.h:1.10.4.64.2.1 Tue Nov 4 23:01:57 2003
+++ ircu2.10/include/patchlevel.h Thu Nov 6 02:32:54 2003
@@ -15,10 +15,10 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * $Id: patchlevel.h,v 1.10.4.64.2.1 2003/11/05 07:01:57 isomer Exp $
+ * $Id: patchlevel.h,v 1.10.4.64.2.2 2003/11/06 10:32:54 isomer Exp $
*
*/
-#define PATCHLEVEL "06.(pre0)"
+#define PATCHLEVEL "06.(pre1)"
#define RELEASE ".11."
Index: ircu2.10/ircd/s_stats.c
diff -u ircu2.10/ircd/s_stats.c:1.16.2.9 ircu2.10/ircd/s_stats.c:1.16.2.9.2.1
--- ircu2.10/ircd/s_stats.c:1.16.2.9 Sat Nov 1 02:19:13 2003
+++ ircu2.10/ircd/s_stats.c Thu Nov 6 02:32:54 2003
@@ -19,7 +19,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * $Id: s_stats.c,v 1.16.2.9 2003/11/01 10:19:13 isomer Exp $
+ * $Id: s_stats.c,v 1.16.2.9.2.1 2003/11/06 10:32:54 isomer Exp $
*/
#include "config.h"
@@ -112,7 +112,7 @@
/* Special-case 'k' or 'K' lines as appropriate... -Kev */
if ((tmp->status & CONF_UWORLD))
send_reply(sptr, p[1], c, host, pass, name, port, get_conf_class(tmp));
- else if ((tmp->status & (CONF_SERVER | CONF_HUB)))
+ else if ((tmp->status & (CONF_SERVER)))
send_reply(sptr, p[1], c, "*", name, port, get_conf_class(tmp));
else
send_reply(sptr, p[1], c, host, name, port, get_conf_class(tmp));
----------------------- End of diff -----------------------