diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-24 11:51:52 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-24 11:51:52 +0000 |
commit | 873b749ddc53a6d7f124ae6c5d8eb373dfb1f540 (patch) | |
tree | 8c84699f3bc19dc3681f0fb0b49db6b70e0706b2 | |
parent | 2174339311e6586b8c5950b5293a7af094b2c7b8 (diff) |
Remove an out of date comment
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7533 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/cmd_user.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cmd_user.cpp b/src/cmd_user.cpp index dc224db76..4e1584a81 100644 --- a/src/cmd_user.cpp +++ b/src/cmd_user.cpp @@ -37,8 +37,8 @@ CmdResult cmd_user::Handle (const char** parameters, int pcnt, userrec *user) } else { - /* We're not checking ident, but I'm not sure I like the idea of '~' prefixing.. */ - /* XXX - The ident field is IDENTMAX+2 in size to account for +1 for the optional + /* + * The ident field is IDENTMAX+2 in size to account for +1 for the optional * ~ character, and +1 for null termination, therefore we can safely use up to * IDENTMAX here. */ @@ -52,7 +52,8 @@ CmdResult cmd_user::Handle (const char** parameters, int pcnt, userrec *user) user->WriteServ("462 %s :You may not reregister",user->nick); return CMD_FAILURE; } - /* parameters 2 and 3 are local and remote hosts, ignored when sent by client connection */ + + /* parameters 2 and 3 are local and remote hosts, and are ignored */ if (user->registered == REG_NICKUSER) { int MOD_RESULT = 0; |