summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorGravatar brain2008-02-20 18:10:18 +0000
committerGravatar brain2008-02-20 18:10:18 +0000
commit2a4dee14785aa322b1bc158496f535451be53e74 (patch)
treed3ad9b39fd72e611919989d9812cb3456b079260 /src/command_parse.cpp
parentMerge in patch by Darom that fixes race condition when unloading m_mysql.so t... (diff)
Fix an unneeded assignment in LoopCall that stops it being used for commands which are sent out 'raw' to other servers by spanningtree
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8970 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 495a8f605..587133975 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -195,8 +195,6 @@ int CommandParser::LoopCall(userrec* user, command_t* CommandObj, const char** p
new_parameters[splithere] = item.c_str();
- parameters[splithere] = item.c_str();
-
/* Execute the command handler over and over. If someone pulls our user
* record out from under us (e.g. if we /kill a comma sep list, and we're
* in that list ourselves) abort if we're gone.