Navigation Menu

Skip to content

Commit

Permalink
More spanningtree tweaks
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9844 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
braindigitalis committed Jun 6, 2008
1 parent 4bb3340 commit 8172d4a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/modules/m_spanningtree/rconnect.cpp
Expand Up @@ -55,8 +55,9 @@ CmdResult cmd_rconnect::Handle (const std::vector<std::string>& parameters, User
ServerInstance->SNO->WriteToSnoMask('l',"Remote CONNECT from %s matching \002%s\002, connecting server \002%s\002",user->nick.c_str(),parameters[0].c_str(),parameters[1].c_str());
std::vector<std::string> para;
para.push_back(parameters[1]);
std::string original_command = std::string("CONNECT ") + parameters[1];
Creator->OnPreCommand("CONNECT", para, user, true, original_command);
std::string cmd("CONNECT");
std::string original_command = cmd + " " + parameters[1];
Creator->OnPreCommand(cmd, para, user, true, original_command);
}
return CMD_SUCCESS;
}
Expand Down

0 comments on commit 8172d4a

Please sign in to comment.