From af0f219afc4099a6cc0b8b7f2d96786f0baf6b21 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 2 Mar 2006 13:34:04 +0000 Subject: 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 --- include/connection.h | 2 +- include/users.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/connection.h b/include/connection.h index db76859d7..032f9ba6c 100644 --- a/include/connection.h +++ b/include/connection.h @@ -43,7 +43,7 @@ class connection : public Extensible /** Hostname of connection. Not used if this is a serverrec */ - char host[160]; + char host[64]; /** Stats counter for bytes inbound */ 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; -- cgit v1.2.3