From fe39b96db7735ceb243f1f09e3d41633d803445f Mon Sep 17 00:00:00 2001 From: rburchell Date: Tue, 10 Feb 2009 16:17:16 +0000 Subject: Fix modules to use the right type (CommandReturn, not CommandResult) git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1977 5417fbe8-f217-4b02-8779-1006273d7864 --- src/core/ns_ghost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/ns_ghost.c') diff --git a/src/core/ns_ghost.c b/src/core/ns_ghost.c index 85769dc3a..a751f8af8 100644 --- a/src/core/ns_ghost.c +++ b/src/core/ns_ghost.c @@ -24,7 +24,7 @@ class CommandNSGhost : public Command { } - CommandResult Execute(User *u, std::vector ¶ms) + CommandReturn Execute(User *u, std::vector ¶ms) { const char *nick = params[0].c_str(); const char *pass = params.size() > 1 ? params[1].c_str() : NULL; -- cgit