summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-09 11:18:55 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-09 11:18:55 +0000
commit2d3e110c46a5b809fdb8d0506df057b973bd8c36 (patch)
tree7d63c2dc47d0a9520d2770317d13754f61b2eed0
parent2fade61bfd9e52c94b818617739a226d4ef8ef0b (diff)
Unneccessary colon
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2747 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/users.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 28e96308a..099e88e94 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -684,7 +684,7 @@ void FullConnectUser(userrec* user, CullList* Goners)
WriteServ(user->fd,"001 %s :Welcome to the %s IRC Network %s!%s@%s",user->nick,Config->Network,user->nick,user->ident,user->host);
WriteServ(user->fd,"002 %s :Your host is %s, running version %s",user->nick,Config->ServerName,VERSION);
WriteServ(user->fd,"003 %s :This server was created %s %s",user->nick,__TIME__,__DATE__);
- WriteServ(user->fd,"004 %s %s %s :iowghrasxRVSCWBG lvhopsmntikrcaqbegOLQRSKVHGCNT",user->nick,Config->ServerName,VERSION);
+ WriteServ(user->fd,"004 %s %s %s iowghrasxRVSCWBG lvhopsmntikrcaqbegOLQRSKVHGCNT",user->nick,Config->ServerName,VERSION);
// anfl @ #ratbox, efnet reminded me that according to the RFC this cant contain more than 13 tokens per line...
// so i'd better split it :)
std::stringstream out(Config->data005);