From fc65994fbbedc32f3659e29316812f0e6cc2bfa7 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 22 Dec 2005 17:20:42 +0000 Subject: [PATCH] Missing semicolon (gack) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2638 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/users.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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; -- 2.39.2