summaryrefslogtreecommitdiff
path: root/src/commands.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-30 15:35:15 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-30 15:35:15 +0000
commit5a331966832a930d4770752f5e60338581830887 (patch)
tree484adbd474ba9b0f206b89e31969b245221f570a /src/commands.cpp
parent596e41348f06cab088e35c362393a3140bf161b0 (diff)
Added Server::RehashServer
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2060 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands.cpp')
-rw-r--r--src/commands.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index 518ecd71e..82a6a2237 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -1076,7 +1076,10 @@ void handle_rehash(char **parameters, int pcnt, userrec *user)
{
WriteServ(user->fd,"382 %s %s :Rehashing",user->nick,CleanFilename(CONFIG_FILE));
ReadConfig(false,user);
- FOREACH_MOD OnRehash();
+ std::string parameter = "";
+ if (pcnt)
+ parameter = parameters[0];
+ FOREACH_MOD OnRehash(parameter);
WriteOpers("%s is rehashing config file %s",user->nick,CleanFilename(CONFIG_FILE));
}