summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-29 05:53:30 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-29 05:53:30 +0000
commit4cc7c2ba94faf1fe7443876a04ea6ad2203bcffe (patch)
treed2a5078bd0cd19513c6da85ea29303f338298b74 /include
parentb0a467e8d3064177e3ceaaa6c207a3e625d2125a (diff)
Compensate for ~ in ident length
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1551 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/users.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/users.h b/include/users.h
index a093e633e..69ea434fb 100644
--- a/include/users.h
+++ b/include/users.h
@@ -121,8 +121,9 @@ class userrec : public connection
char nick[NICKMAX];
/** The users ident reply.
+ * Two characters are added to the user-defined limit to compensate for the tilde etc.
*/
- char ident[IDENTMAX+1];
+ char ident[IDENTMAX+2];
/** The host displayed to non-opers (used for cloaking etc).
* This usually matches the value of userrec::host.