summaryrefslogtreecommitdiffstats
path: root/src/users.cpp
diff options
context:
space:
mode:
authorGravatar brain2005-12-22 17:20:42 +0000
committerGravatar brain2005-12-22 17:20:42 +0000
commitfc65994fbbedc32f3659e29316812f0e6cc2bfa7 (patch)
treeeb822fb721c652148467f110a27997f471f32168 /src/users.cpp
parentOptimized out strcpys that copy empty strings (craq++) (diff)
downloadinspircd++-fc65994fbbedc32f3659e29316812f0e6cc2bfa7.tar.gz
inspircd++-fc65994fbbedc32f3659e29316812f0e6cc2bfa7.tar.bz2
inspircd++-fc65994fbbedc32f3659e29316812f0e6cc2bfa7.zip
Missing semicolon (gack)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2638 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 6f5c96279..07caefed3 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -63,7 +63,7 @@ template<typename T> inline string ConvToStr(const T &in)
userrec::userrec()
{
// the PROPER way to do it, AVOID bzero at *ALL* costs
- *nick = *ident = *host = *dhost = *fullname = *modes = *awaymsg = *oper = *ip = 0
+ *nick = *ident = *host = *dhost = *fullname = *modes = *awaymsg = *oper = *ip = 0;
server = (char*)FindServerNamePtr(Config->ServerName);
reset_due = TIME;
lines_in = fd = lastping = signon = idle_lastmsg = nping = registered = 0;