]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chghost.cpp
m_ssl_* Add option to sslprofile controlling whether to request client certificates
[user/henk/code/inspircd.git] / src / modules / m_chghost.cpp
index 43b2a323ba4fb84478d2e8c65de77a11f6052852..60146c78b1258e5eda99f3015593baa2cec9dc8b 100644 (file)
@@ -59,7 +59,7 @@ class CommandChghost : public Command
                // Allow services to change the host of unregistered users
                if ((!dest) || ((dest->registered != REG_ALL) && (!user->server->IsULine())))
                {
-                       user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", parameters[0].c_str());
+                       user->WriteNumeric(Numerics::NoSuchNick(parameters[0]));
                        return CMD_FAILURE;
                }
 
@@ -77,10 +77,7 @@ class CommandChghost : public Command
 
        RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
        {
-               User* dest = ServerInstance->FindNick(parameters[0]);
-               if (dest)
-                       return ROUTE_OPT_UCAST(dest->server);
-               return ROUTE_LOCALONLY;
+               return ROUTE_OPT_UCAST(parameters[0]);
        }
 };