Committer : klmitch
CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Branch tags: u2_10_11_07
Commit time: 2004-05-15 03:43:51 UTC
Modified files:
Tag: u2_10_11_07
ChangeLog ircd/ircd_features.c
Log message:
Author: Kev <[EMAIL PROTECTED]>
Log message:
NICKLEN default increased to 12 per CFV-0243.
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.290.2.130.2.7 ircu2.10/ChangeLog:1.290.2.130.2.8
--- ircu2.10/ChangeLog:1.290.2.130.2.7 Thu May 13 22:48:11 2004
+++ ircu2.10/ChangeLog Fri May 14 20:43:39 2004
@@ -1,5 +1,8 @@
2004-05-14 Kevin L Mitchell <[EMAIL PROTECTED]>
+ * ircd/ircd_features.c: per CFV-0243, NICKLEN default is increased
+ to 12
+
* ircd/s_user.c: process account creation timestamp if present in
user mode portion of a N protocol message; add account creation
timestamp to outgoing N protocol messages if that timestamp is
Index: ircu2.10/ircd/ircd_features.c
diff -u ircu2.10/ircd/ircd_features.c:1.15.2.13
ircu2.10/ircd/ircd_features.c:1.15.2.13.2.1
--- ircu2.10/ircd/ircd_features.c:1.15.2.13 Sat Jan 10 16:23:32 2004
+++ ircu2.10/ircd/ircd_features.c Fri May 14 20:43:41 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.15.2.13 2004/01/11 00:23:32 isomer Exp $
+ * $Id: ircd_features.c,v 1.15.2.13.2.1 2004/05/15 03:43:41 klmitch Exp $
*/
#include "config.h"
@@ -260,7 +260,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 -----------------------