Committer : entrope
CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Commit time: 2004-05-16 18:17:06 UTC
Modified files:
ChangeLog doc/example.conf ircd/ircd_features.c
Log message:
Change default NICKLEN per CFV-0243.
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.419 ircu2.10/ChangeLog:1.420
--- ircu2.10/ChangeLog:1.419 Sun May 16 10:59:40 2004
+++ ircu2.10/ChangeLog Sun May 16 11:16:55 2004
@@ -1,3 +1,12 @@
+2004-05-16 Michael Poole <[EMAIL PROTECTED]>
+
+ * doc/example.conf: Make this show the new NICKLEN default.
+
+2004-05-14 Kevin L Mitchell <[EMAIL PROTECTED]>
+
+ * ircd/ircd_features.c: per CFV-0243, NICKLEN default is increased
+ to 12
+
2004-05-14 Kevin L Mitchell <[EMAIL PROTECTED]>
* ircd/s_user.c: process account creation timestamp if present in
Index: ircu2.10/doc/example.conf
diff -u ircu2.10/doc/example.conf:1.27 ircu2.10/doc/example.conf:1.28
--- ircu2.10/doc/example.conf:1.27 Sun May 16 07:27:37 2004
+++ ircu2.10/doc/example.conf Sun May 16 11:16:56 2004
@@ -762,7 +762,7 @@
# "HIDDEN_IP"="127.0.0.1";
# "KILLCHASETIMELIMIT"="30";
# "MAXCHANNELSPERUSER"="10";
-# "NICKLEN" = "9";
+# "NICKLEN" = "12";
# "AVBANLEN"="40";
# "MAXBANS"="30";
# "MAXSILES"="15";
Index: ircu2.10/ircd/ircd_features.c
diff -u ircu2.10/ircd/ircd_features.c:1.30 ircu2.10/ircd/ircd_features.c:1.31
--- ircu2.10/ircd/ircd_features.c:1.30 Sat May 15 07:44:58 2004
+++ ircu2.10/ircd/ircd_features.c Sun May 16 11:16:56 2004
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * $Id: ircd_features.c,v 1.30 2004/05/15 14:44:58 entrope Exp $
+ * $Id: ircd_features.c,v 1.31 2004/05/16 18:16:56 entrope Exp $
*/
#include "config.h"
@@ -261,7 +261,7 @@
/* features that probably should not be touched */
F_I(KILLCHASETIMELIMIT, 0, 30, 0),
F_I(MAXCHANNELSPERUSER, 0, 10, 0),
- F_I(NICKLEN, 0, 9, 0),
+ F_I(NICKLEN, 0, 12, 0),
F_I(AVBANLEN, 0, 40, 0),
F_I(MAXBANS, 0, 45, 0),
F_I(MAXSILES, 0, 15, 0),
----------------------- End of diff -----------------------