summaryrefslogtreecommitdiff
path: root/include/users.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-02 13:34:04 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-02 13:34:04 +0000
commitaf0f219afc4099a6cc0b8b7f2d96786f0baf6b21 (patch)
tree67765b9fd0edd1a466aa1d2d8d83602e2b413342 /include/users.h
parente9f634be37458ce93782b3956550bc7cb99fc220 (diff)
Made host fields more correct 64 in length with 63 copies
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3425 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/users.h')
-rw-r--r--include/users.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/users.h b/include/users.h
index d64c94280..3b1ff5003 100644
--- a/include/users.h
+++ b/include/users.h
@@ -136,7 +136,7 @@ class userrec : public connection
/** The host displayed to non-opers (used for cloaking etc).
* This usually matches the value of userrec::host.
*/
- char dhost[160];
+ char dhost[64];
/** The users full name.
*/
@@ -347,8 +347,8 @@ class WhoWasUser
public:
char nick[NICKMAX];
char ident[IDENTMAX+1];
- char dhost[160];
- char host[160];
+ char dhost[64];
+ char host[64];
char fullname[MAXGECOS+1];
char server[256];
time_t signon;