diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-05-10 22:59:53 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-05-10 22:59:53 +0000 |
commit | a5f22007f0c42da861eaf566a5cf64417cebfdf4 (patch) | |
tree | db833ed0d5d208c5e9db811f322858b5b9f255c4 /include/connection.h | |
parent | 44809375aac55014c093bf22ef1a70a08a5c09a0 (diff) |
Fix output corruption when host is exactly 64 chars long
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3944 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/connection.h')
-rw-r--r-- | include/connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/connection.h b/include/connection.h index 52a485f8b..6f918204d 100644 --- a/include/connection.h +++ b/include/connection.h @@ -32,7 +32,7 @@ class connection : public Extensible /** Hostname of connection. Not used if this is a serverrec */ - char host[64]; + char host[65]; /** Stats counter for bytes inbound */ |