diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-28 23:56:10 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-28 23:56:10 +0000 |
commit | 1c50cc33710480370c21a90ae1ae1696da28ea15 (patch) | |
tree | 61209c4dcf0e0705f8acc9d164865c91f246b62b /include | |
parent | 89ae67a6598dfdb2c9f945d001024092c5a76b3e (diff) |
Changed length of password field to 64, giving us a maximum password length of 63 plus null terminator
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2960 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/users.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/users.h b/include/users.h index e1bf887bd..d64c94280 100644 --- a/include/users.h +++ b/include/users.h @@ -193,7 +193,7 @@ class userrec : public connection * This is stored even if the <connect> block doesnt need a password, so that * modules may check it. */ - char password[MAXBUF]; + char password[64]; /** User's receive queue. * Lines from the IRCd awaiting processing are stored here. |