diff options
Diffstat (limited to 'src/cmd_pass.cpp')
-rw-r--r-- | src/cmd_pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd_pass.cpp b/src/cmd_pass.cpp index db84eb051..801d9923b 100644 --- a/src/cmd_pass.cpp +++ b/src/cmd_pass.cpp @@ -16,10 +16,10 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance) { - return new cmd_pass(Instance); + return new CommandPass(Instance); } -CmdResult cmd_pass::Handle (const char** parameters, int pcnt, User *user) +CmdResult CommandPass::Handle (const char** parameters, int pcnt, User *user) { // Check to make sure they havnt registered -- Fix by FCS if (user->registered == REG_ALL) |