aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd_rehash.cpp
diff options
context:
space:
mode:
authorGravatar w00t2008-08-08 15:51:48 +0000
committerGravatar w00t2008-08-08 15:51:48 +0000
commit91ce46220c8a256089bda52ef020e8d4f0c2a125 (patch)
treed4ad51f15d83b8f6f0d424e77cff76d26d6b843a /src/cmd_rehash.cpp
parentDon't add duplicates, backport of 10122, reported by mixx941 (diff)
Typo.
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@10125 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_rehash.cpp')
-rw-r--r--src/cmd_rehash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_rehash.cpp b/src/cmd_rehash.cpp
index 808fa01d5..c0f206b55 100644
--- a/src/cmd_rehash.cpp
+++ b/src/cmd_rehash.cpp
@@ -35,7 +35,7 @@ CmdResult cmd_rehash::Handle (const char** parameters, int pcnt, userrec *user)
}
// If it's not got a param or the param doesn't look like a module-owned one (e.g. servermask)
- if (!pcnt || parameter[0][0] != "-")
+ if (!pcnt || parameters[0][0] != "-")
{
ServerInstance->WriteOpers("*** %s is rehashing config file %s",user->nick,ServerConfig::CleanFilename(ServerInstance->ConfigFileName));
ServerInstance->CloseLog();