diff options
Diffstat (limited to 'src/modules/m_spy.cpp')
-rw-r--r-- | src/modules/m_spy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spy.cpp b/src/modules/m_spy.cpp index 625b5c971..e69db8ed5 100644 --- a/src/modules/m_spy.cpp +++ b/src/modules/m_spy.cpp @@ -92,7 +92,7 @@ class cmd_spylist : public command_t this->source = "m_spy.so"; } - void Handle (char **parameters, int pcnt, userrec *user) + void Handle (const char** parameters, int pcnt, userrec *user) { WriteOpers("*** Oper %s used SPYLIST to list +s/+p channels and keys.",user->nick); WriteServ(user->fd,"321 %s Channel :Users Name",user->nick); @@ -112,7 +112,7 @@ class cmd_spynames : public command_t this->source = "m_spy.so"; } - void Handle (char **parameters, int pcnt, userrec *user) + void Handle (const char** parameters, int pcnt, userrec *user) { chanrec* c; |