From 0701b7df9fdd5c67f8a7de64250b3b2475f89ca2 Mon Sep 17 00:00:00 2001 From: rburchell Date: Wed, 11 Feb 2009 00:39:46 +0000 Subject: [PATCH] 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 --- src/core/ns_register.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { }