summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-10 01:37:38 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-10 01:37:38 +0000
commitf5f33337f99d71c5432c302a68b6ae6819580bbd (patch)
tree055fa696848c92c74ee25a87ee28ba49d2360ff9 /src
parent57f81a164ae406daf334c3ad5b8152ee91fdaee3 (diff)
Fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@484 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/inspircd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 5a4f542fc..f21df853a 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -5154,8 +5154,8 @@ void handle_N(char token,char* params,serverrec* source,serverrec* reply, char*
char* dhost = strtok(NULL," ");
char* ident = strtok(NULL," ");
char* modes = strtok(NULL," ");
- char* server = strtok(NULL," ");
- char* gecos = strtok(NULL," ");
+ char* server = strtok(NULL," :");
+ char* gecos = strtok(NULL,"\r\n");
time_t TS = atoi(tm);
user_hash::iterator iter = clientlist.find(nick);
if (iter != clientlist.end())