diff options
-rw-r--r-- | src/cmd_clearcache.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cmd_clearcache.cpp b/src/cmd_clearcache.cpp index 22e219a83..df1bd5342 100644 --- a/src/cmd_clearcache.cpp +++ b/src/cmd_clearcache.cpp @@ -13,16 +13,16 @@ #include "configreader.h" #include "users.h" -#include "commands/cmd_admin.h" +#include "commands/cmd_clearcache.h" extern "C" command_t* init_command(InspIRCd* Instance) { - return new cmd_admin(Instance); + return new cmd_clearcache(Instance); } -/** Handle /ADMIN +/** Handle /CLEARCACHE */ -CmdResult cmd_admin::Handle (const char** parameters, int pcnt, userrec *user) +CmdResult cmd_clearcache::Handle (const char** parameters, int pcnt, userrec *user) { int n = ServerInstance->Res->ClearCache(); user->WriteServ("NOTICE %s :*** Cleared DNS cache of %d items.", user->nick, n); |