about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2013-03-08 19:31:57 +0100
committerAlexander Barton <alex@barton.de>2013-03-08 19:31:57 +0100
commitb33da9b8f3e46f3174093c01aa9e75b65964ecf2 (patch)
tree18e4c20990953ed0c315aecc1c98bbb454761fe7 /src
parent3e3585708010cc0da22355aca84c9e79f8286e0b (diff)
downloadngircd-b33da9b8f3e46f3174093c01aa9e75b65964ecf2.tar.gz
ngircd-b33da9b8f3e46f3174093c01aa9e75b65964ecf2.zip
Increase password length limit to 64 characters
Closes bug #154.
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/defines.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngircd/defines.h b/src/ngircd/defines.h
index 3850b581..6b92a699 100644
--- a/src/ngircd/defines.h
+++ b/src/ngircd/defines.h
@@ -99,7 +99,7 @@
 #define CLIENT_NICK_LEN 32
 
 /** Max. password length (including NULL). */
-#define CLIENT_PASS_LEN 21
+#define CLIENT_PASS_LEN 65
 
 /** Max. length of user name ("login"; incl. NULL), RFC 2812, section 1.2.1. */
 #ifndef STRICT_RFC