diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-10 01:17:30 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-10 01:17:30 +0000 |
commit | 94f78bdbc49c5c427156ac43d10d8e64b4ca4596 (patch) | |
tree | 7edad5fe2c7c59fa87f70f76daff0c427b837bdd /src/inspircd.cpp | |
parent | cdf451e8d4bc163b6f8711c07db0f785e90f46e7 (diff) |
fix?
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@482 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 214cc9981..7ebc61f9c 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -5180,7 +5180,7 @@ void handle_N(char token,char* params,serverrec* source,serverrec* reply, char* strncpy(clientlist[nick]->dhost, dhost,160); strncpy(clientlist[nick]->server, server,256); strncpy(clientlist[nick]->ident, ident,10); // +1 char to compensate for '~' - strncpy(clientlist[nick]->fullname, gecos,128); + //strncpy(clientlist[nick]->fullname, gecos,128); clientlist[nick]->signon = TS; clientlist[nick]->nping = 0; // this is ignored for a remote user anyway. clientlist[nick]->lastping = 1; |