Change the defaul nicklen back to 31. This is more efficient due to struct packing.
This commit is contained in:
parent
9e94d9ea13
commit
8a889b0a5f
|
@ -7852,7 +7852,7 @@ $as_echo "$as_me: WARNING: NICKLEN has a hard limit of 50. Setting NICKLEN=50" >
|
||||||
fi
|
fi
|
||||||
|
|
||||||
else
|
else
|
||||||
NICKLEN=30
|
NICKLEN=31
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -873,7 +873,7 @@ AC_HELP_STRING([--with-nicklen=LENGTH],[Set the nick length to LENGTH (default 3
|
||||||
else
|
else
|
||||||
NICKLEN="$withval"
|
NICKLEN="$withval"
|
||||||
fi
|
fi
|
||||||
], [NICKLEN=30])
|
], [NICKLEN=31])
|
||||||
|
|
||||||
AC_ARG_WITH(topiclen,
|
AC_ARG_WITH(topiclen,
|
||||||
AC_HELP_STRING([--with-topiclen=NUMBER],[Set the max topic length to NUMBER (default 390, max 390)]),
|
AC_HELP_STRING([--with-topiclen=NUMBER],[Set the max topic length to NUMBER (default 390, max 390)]),
|
||||||
|
|
Loading…
Reference in New Issue