X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_sanick.cpp;h=824b3fa6a97fe079440a3f13856c37e1167f6ce8;hb=fcafba14c5408360ec725ed1649ede75b7ae52c1;hp=3e3e0745c735b1fe1eef2ec67a42332855a5b1b7;hpb=b305a8d5e2e690af9e280851503d9608a218bd43;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_sanick.cpp b/src/modules/m_sanick.cpp index 3e3e0745c..824b3fa6a 100644 --- a/src/modules/m_sanick.cpp +++ b/src/modules/m_sanick.cpp @@ -3,7 +3,7 @@ * +------------------------------------+ * * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -53,7 +53,7 @@ class CommandSanick : public Command } } - /* Have we hit users server yet? */ + /* Have we hit target's server yet? */ if (target && IS_LOCAL(target)) { std::string oldnick = user->nick; @@ -68,11 +68,11 @@ class CommandSanick : public Command ServerInstance->SNO->WriteToSnoMask('A', oldnick+" failed SANICK (from "+newnick+" to "+parameters[1]+")"); ServerInstance->PI->SendSNONotice("A", oldnick+" failed SANICK (from "+newnick+" to "+parameters[1]+")"); } - /* hit user and have sent our NICK out, we can now bail */ + /* Yes, hit target and we have sent our NICK out, we can now bail */ return CMD_LOCALONLY; } - /* no, route it on */ + /* No, route it on */ return CMD_SUCCESS; } };