aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--irc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc.c b/irc.c
index 548ee33..17601f4 100644
--- a/irc.c
+++ b/irc.c
@@ -63,7 +63,7 @@ irc_handshake()
E(irc_sendall("JOIN #",6));
E(irc_sendall(g_chanlist[i],strlen(g_chanlist[i])));
if (g_chanpwlist[i] != NULL) {
- if (strlen(g_chanpwlist[i]) > 32) {
+ if (strlen(g_chanpwlist[i]) > 64) {
fprintf(stderr,"channel password too long for #(%s)\n",g_chanlist[i]);
return -1;
}