diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-14 23:04:19 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-14 23:04:19 +0000 |
commit | bf020d8dfd0f800a69902da65332a5aff4ae7b02 (patch) | |
tree | b0f694adde65fb44718f7716b4f257dc31375d28 /src | |
parent | 77174a7b4d246a8b879bc713bcd0c3c4860d3bdd (diff) |
Removed references to RAW in config and lang files. Kirby from Dreamland ate them, he was hungry. Probably wasn't good for his appetite, though.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2049 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/config.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/config.c b/src/config.c index 6f3e1beb1..2ad7e753d 100644 --- a/src/config.c +++ b/src/config.c @@ -188,7 +188,6 @@ bool WallOSSQLine; bool WallOSSZLine; bool WallOSNoOp; bool WallOSJupe; -bool WallOSRaw; bool WallAkillExpire; bool WallSGLineExpire; bool WallSQLineExpire; @@ -805,7 +804,6 @@ int ServerConfig::Read(bool bail) {"operserv", "akillonadd", "no", new ValueContainerBool(&AkillOnAdd), DT_BOOLEAN, NoValidation}, {"operserv", "killonsgline", "no", new ValueContainerBool(&KillonSGline), DT_BOOLEAN, NoValidation}, {"operserv", "killonsqline", "no", new ValueContainerBool(&KillonSQline), DT_BOOLEAN, NoValidation}, - {"operserv", "disableraw", "no", new ValueContainerBool(&DisableRaw), DT_BOOLEAN, NoValidation}, {"operserv", "notifications", "", new ValueContainerString(&OSNotifications), DT_STRING, NoValidation}, {"operserv", "limitsessions", "no", new ValueContainerBool(&LimitSessions), DT_BOOLEAN, NoValidation}, {"operserv", "defaultsessionlimit", "0", new ValueContainerUInt(&DefSessionLimit), DT_UINTEGER, NoValidation}, @@ -1593,7 +1591,7 @@ int read_config(int reload) } WallOper = WallBadOS = WallOSGlobal = WallOSMode = WallOSClearmodes = WallOSKick = WallOSAkill = WallOSSGLine = WallOSSQLine = WallOSSZLine = WallOSNoOp = - WallOSJupe = WallOSRaw = WallAkillExpire = WallSGLineExpire = WallSQLineExpire = WallSZLineExpire = WallExceptionExpire = WallGetpass = WallSetpass = + WallOSJupe = WallAkillExpire = WallSGLineExpire = WallSQLineExpire = WallSZLineExpire = WallExceptionExpire = WallGetpass = WallSetpass = WallForbid = WallDrop = false; if (!OSNotifications.empty()) { spacesepstream notifications(OSNotifications); @@ -1611,7 +1609,6 @@ int read_config(int reload) else if (notice == "osszline") WallOSSZLine = true; else if (notice == "osnoop") WallOSNoOp = true; else if (notice == "osjupe") WallOSJupe = true; - else if (notice == "osraw") WallOSRaw = true; else if (notice == "akillexpire") WallAkillExpire = true; else if (notice == "sglineexpire") WallSGLineExpire = true; else if (notice == "sqlineexpire") WallSQLineExpire = true; |