diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-03 00:18:47 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-03 00:18:47 +0000 |
commit | f1dbe14881f19e46de86dcfd7f3c32146a51c563 (patch) | |
tree | 3c173de58396a7ed526706298eedcecfe2cf354d | |
parent | 139285820f9fa625713fb757ad868fb0642a0409 (diff) |
Fix compile error, and spank Brain
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5634 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index 17170fdb9..4437449e3 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -2043,7 +2043,7 @@ void userrec::HandleEvent(EventType et, int errornum) this->FlushWriteBuf(); break; case EVENT_ERROR: - this->SetWriteError(errnum ? strerror(errornum) : "EOF from client"); + this->SetWriteError(errornum ? strerror(errornum) : "EOF from client"); break; } } |