summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-18 17:06:20 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-18 17:06:20 +0000
commit57b115363c3d1b2ef721f3ed4c984024ce474814 (patch)
treee825a76e41a1711c91dda95025dc9d29c1d07c7a
parent8f66ecfe0d6eb8cb04102add654c602b4e081845 (diff)
Removed autokilldatabase directive from operserv block as it is no longer in use with the removal of legacy database support.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1752 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--data/example_new.conf7
-rw-r--r--include/extern.h1
-rw-r--r--src/config.c2
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},