summaryrefslogtreecommitdiff
path: root/src/core/cs_sendpass.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-08 00:12:54 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-08 00:12:54 +0000
commit8d4789efaaa27967f83d376ea8f6babbce6d980e (patch)
tree5edbe6df722238e6087405309b64602a3772bf70 /src/core/cs_sendpass.c
parent68d0a515d053af8215831b4b04e7fe7b8ca8b540 (diff)
Convert all the derived module constructors to take the new parameter (sed must be worshipped). They still call the base constructor the wrong way.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1577 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/cs_sendpass.c')
-rw-r--r--src/core/cs_sendpass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cs_sendpass.c b/src/core/cs_sendpass.c
index bd6aa57ec..fea70c1b0 100644
--- a/src/core/cs_sendpass.c
+++ b/src/core/cs_sendpass.c
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
class CSSendPass : public Module
{
public:
- CSSendPass(const std::string &creator) : Module(creator)
+ CSSendPass(const std::string &modname, const std::string &creator) : Module(creator)
{
Command *c;