summaryrefslogtreecommitdiff
path: root/src/cmd_oper.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-29 19:44:46 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-29 19:44:46 +0000
commit6080b1693d8f831fb5dcd9d956d6abdddaa9bed6 (patch)
tree09e6cd72f76e84f25ad2509ac2cb1a2f63035ed7 /src/cmd_oper.cpp
parente357c3048e7a01ed8bd12f9592a96b618e089964 (diff)
Snomasks +k (kills) and +o (oper)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5069 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_oper.cpp')
-rw-r--r--src/cmd_oper.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/cmd_oper.cpp b/src/cmd_oper.cpp
index 6fd610322..f62d7bd7f 100644
--- a/src/cmd_oper.cpp
+++ b/src/cmd_oper.cpp
@@ -29,10 +29,8 @@
#include "mode.h"
#include "xline.h"
#include "inspstring.h"
-
#include "hashcomp.h"
#include "socketengine.h"
-
#include "command_parse.h"
#include "commands/cmd_oper.h"
@@ -89,7 +87,7 @@ void cmd_oper::Handle (const char** parameters, int pcnt, userrec *user)
if (!ServerInstance->IsNick(TypeName))
{
user->WriteServ("491 %s :Invalid oper type (oper types must follow the same syntax as nicknames)",user->nick);
- ServerInstance->WriteOpers("*** CONFIGURATION ERROR! Oper type invalid for OperType '%s'",OperType);
+ ServerInstance->SNO->WriteToSnoMask('o',"CONFIGURATION ERROR! Oper type invalid for OperType '%s'",OperType);
ServerInstance->Log(DEFAULT,"OPER: Failed oper attempt by %s!%s@%s: credentials valid, but oper type erroneous.",user->nick,user->ident,user->host);
return;
}
@@ -105,7 +103,7 @@ void cmd_oper::Handle (const char** parameters, int pcnt, userrec *user)
if (found)
{
/* correct oper credentials */
- ServerInstance->WriteOpers("*** %s (%s@%s) is now an IRC operator of type %s",user->nick,user->ident,user->host,OperType);
+ ServerInstance->SNO->WriteToSnoMask('o',"%s (%s@%s) is now an IRC operator of type %s",user->nick,user->ident,user->host,OperType);
user->WriteServ("381 %s :You are now an IRC operator of type %s",user->nick,OperType);
if (!user->modes[UM_OPERATOR])
user->Oper(OperType);
@@ -115,15 +113,16 @@ void cmd_oper::Handle (const char** parameters, int pcnt, userrec *user)
if (!fail2)
{
user->WriteServ("491 %s :Invalid oper credentials",user->nick);
- ServerInstance->WriteOpers("*** WARNING! Failed oper attempt by %s!%s@%s!",user->nick,user->ident,user->host);
+ ServerInstance->SNO->WriteToSnoMask('o',"WARNING! Failed oper attempt by %s!%s@%s!",user->nick,user->ident,user->host);
ServerInstance->Log(DEFAULT,"OPER: Failed oper attempt by %s!%s@%s: user, host or password did not match.",user->nick,user->ident,user->host);
}
else
{
user->WriteServ("491 %s :Your oper block does not have a valid opertype associated with it",user->nick);
- ServerInstance->WriteOpers("*** CONFIGURATION ERROR! Oper block mismatch for OperType %s",OperType);
+ ServerInstance->SNO->WriteToSnoMask('o',"CONFIGURATION ERROR! Oper block mismatch for OperType %s",OperType);
ServerInstance->Log(DEFAULT,"OPER: Failed oper attempt by %s!%s@%s: credentials valid, but oper type nonexistent.",user->nick,user->ident,user->host);
}
}
return;
}
+