Fix a compiler warning about a redefinition of some symbol.

Does nobody else read compiler warnings? Oo


git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10751 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
psychon 2008-10-30 19:53:58 +00:00
parent f103942e50
commit d9bdfda657

View File

@ -294,7 +294,7 @@ bool CommandParser::ProcessCommand(User *user, std::string &cmd)
* Thanks dz for making me actually understand why this is necessary!
* -- w00t
*/
Commandtable::iterator cm = cmdlist.find(command);
cm = cmdlist.find(command);
if (cm == cmdlist.end())
{
if (user->registered == REG_ALL)