X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_nick.cpp;h=518d600f19c956b2b0fe6f2c91c252f4559311cf;hb=59b1a8955142935b02af6446005ab47fc7c3fc8c;hp=31f0943e7a10062793d17812c03c467c89048503;hpb=7254428c00c7f9298eeaddecec4e17d3fd1ecef4;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_nick.cpp b/src/cmd_nick.cpp index 31f0943e7..518d600f1 100644 --- a/src/cmd_nick.cpp +++ b/src/cmd_nick.cpp @@ -102,14 +102,14 @@ void cmd_nick::Handle (char **parameters, int pcnt, userrec *user) * the nick AAA is the same as the nick aaa. */ log(DEBUG,"old nick is new nick, not updating hash (case change only)"); - strlcpy(oldnick,user->nick,NICKMAX); + strlcpy(oldnick, user->nick, NICKMAX - 1); int MOD_RESULT = 0; FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(user,parameters[0])); if (MOD_RESULT) return; if (user->registered == 7) WriteCommon(user,"NICK %s",parameters[0]); - strlcpy(user->nick,parameters[0],NICKMAX); + strlcpy(user->nick, parameters[0], NICKMAX - 1); FOREACH_MOD(I_OnUserPostNick,OnUserPostNick(user,oldnick)); return; } @@ -153,7 +153,7 @@ void cmd_nick::Handle (char **parameters, int pcnt, userrec *user) } - strlcpy(oldnick,user->nick,NICKMAX); + strlcpy(oldnick, user->nick, NICKMAX - 1); /* change the nick of the user in the users_hash */ user = ReHashNick(user->nick, parameters[0]); @@ -161,7 +161,7 @@ void cmd_nick::Handle (char **parameters, int pcnt, userrec *user) if (!user) return; if (!user->nick) return; - strlcpy(user->nick, parameters[0],NICKMAX); + strlcpy(user->nick, parameters[0], NICKMAX - 1); log(DEBUG,"new nick set: %s",user->nick);