diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-29 05:53:30 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-29 05:53:30 +0000 |
commit | 4cc7c2ba94faf1fe7443876a04ea6ad2203bcffe (patch) | |
tree | d2a5078bd0cd19513c6da85ea29303f338298b74 /include/users.h | |
parent | b0a467e8d3064177e3ceaaa6c207a3e625d2125a (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/users.h')
-rw-r--r-- | include/users.h | 3 |
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. |