diff options
| -rw-r--r-- | data/example_new.conf | 7 | ||||
| -rw-r--r-- | include/extern.h | 1 | ||||
| -rw-r--r-- | src/config.c | 2 |
3 files changed, 0 insertions, 10 deletions
diff --git a/data/example_new.conf b/data/example_new.conf index 0714da134..95d826a82 100644 --- a/data/example_new.conf +++ b/data/example_new.conf @@ -1157,13 +1157,6 @@ operserv exceptiondatabase = "exception.db" /* - * The filename of OperServ's Autokill database. The path is relative to the services - * executable. If not given, defaults to "akill.db". OperServ no longer uses this file, and - * this directive is only provided for importing an old OperServ database. - */ - #autokilldatabase = "akill.db" - - /* * The core modules to load for OperServ. This is a space separated list that corresponds * to the base names of the modules for OperServ. This directive is optional, but highly recommended. */ diff --git a/include/extern.h b/include/extern.h index 1ff32aba5..4441c1451 100644 --- a/include/extern.h +++ b/include/extern.h @@ -272,7 +272,6 @@ E char *PreNickDBName; E char *ChanDBName; E char *BotDBName; E char *OperDBName; -E char *AutokillDBName; E char *NewsDBName; E bool NoBackupOkay; diff --git a/src/config.c b/src/config.c index 29eff4bb5..1bc0005cd 100644 --- a/src/config.c +++ b/src/config.c @@ -69,7 +69,6 @@ char *PreNickDBName; char *ChanDBName; char *BotDBName; char *OperDBName; -char *AutokillDBName; char *NewsDBName; static char *HostSetter; @@ -791,7 +790,6 @@ int ServerConfig::Read(bool bail) {"operserv", "database", "oper.db", new ValueContainerChar(&OperDBName), DT_CHARPTR, ValidateNotEmpty}, {"operserv", "newsdatabase", "news.db", new ValueContainerChar(&NewsDBName), DT_CHARPTR, ValidateNotEmpty}, {"operserv", "exceptiondatabase", "exception.db", new ValueContainerChar(&ExceptionDBName), DT_CHARPTR, ValidateNotEmpty}, - {"operserv", "autokilldatabase", "akill.db", new ValueContainerChar(&AutokillDBName), DT_CHARPTR, ValidateNotEmpty}, {"operserv", "modules", "", new ValueContainerChar(&OperCoreModules), DT_CHARPTR, NoValidation}, {"operserv", "servicesroot", "", new ValueContainerChar(&ServicesRoot), DT_CHARPTR, ValidateNotEmpty}, {"operserv", "superadmin", "no", new ValueContainerBool(&SuperAdmin), DT_BOOLEAN, NoValidation}, |
