]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fixify comments
authorpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>
Sun, 15 Feb 2009 13:23:48 +0000 (13:23 +0000)
committerpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>
Sun, 15 Feb 2009 13:23:48 +0000 (13:23 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11114 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_sanick.cpp

index 3e3e0745c735b1fe1eef2ec67a42332855a5b1b7..cdefe4abb4b56d21a0f403c9ea6a86907c902a61 100644 (file)
@@ -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;
        }
 };