diff options
| author | 2007-01-01 20:53:20 +0000 | |
|---|---|---|
| committer | 2007-01-01 20:53:20 +0000 | |
| commit | 42d5b9571eff06b0c33093dc9118c29f9603fd2b (patch) | |
| tree | 97429d79e59c3f14d5fea75e2a25524af2bd842a /src/modules/extra/m_sqloper.cpp | |
| parent | Make sure that if an oper opers up and has an swhois in their opertype or ope... (diff) | |
Fix to allow for OnRehash to know what user initiated the rehash
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6207 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra/m_sqloper.cpp')
| -rw-r--r-- | src/modules/extra/m_sqloper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_sqloper.cpp b/src/modules/extra/m_sqloper.cpp index b7a45af45..ead9a4f36 100644 --- a/src/modules/extra/m_sqloper.cpp +++ b/src/modules/extra/m_sqloper.cpp @@ -42,7 +42,7 @@ public: if (!SQLutils) throw ModuleException("Can't find m_sqlutils.so. Please load m_sqlutils.so before m_sqloper.so."); - OnRehash(""); + OnRehash(NULL,""); } virtual ~ModuleSQLOper() @@ -56,7 +56,7 @@ public: List[I_OnRequest] = List[I_OnRehash] = List[I_OnPreCommand] = 1; } - virtual void OnRehash(const std::string ¶meter) + virtual void OnRehash(userrec* user, const std::string ¶meter) { ConfigReader Conf(Srv); |
