From b34e389a1c04ceac25352b0d265972449a3168a2 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Tue, 24 Jan 2023 17:42:21 +0000 Subject: increase maximum password length --- irc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3