diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-11 00:39:46 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-11 00:39:46 +0000 |
commit | 0701b7df9fdd5c67f8a7de64250b3b2475f89ca2 (patch) | |
tree | cb5558abc24ae54b5d7dae9fa603171c1ec9cda2 /src | |
parent | 94916b32cbb7b391994a9d9da13628a1c68d3be2 (diff) |
Fix NS REGISTER not being registered as a command handler properly.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2008 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ns_register.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ns_register.c b/src/core/ns_register.c index 5eec9f8d6..ed9004586 100644 --- a/src/core/ns_register.c +++ b/src/core/ns_register.c @@ -200,7 +200,7 @@ class CommandNSConfirm : public Command return MOD_CONT; } public: - CommandNSConfirm(const std::string &cmdn, int min, int max) : Command("CONFIRM", min, max) + CommandNSConfirm(const std::string &cmdn, int min, int max) : Command(cmdn, min, max) { } |