summaryrefslogtreecommitdiff
path: root/src/datafiles.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:09 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:09 +0000
commit2fd6bf39b1b018a7081fafd8350ea88f1b733ea5 (patch)
tree0dad452b2a0d221aab16417978b4743408c975f4 /src/datafiles.c
parent0f2719990e6b61c9172e0a4593b7a1605bb29f44 (diff)
Remove 'skeleton' mode. It's not really all that useful.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1200 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/datafiles.c')
-rw-r--r--src/datafiles.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/src/datafiles.c b/src/datafiles.c
index a2b210700..6dd7d40dd 100644
--- a/src/datafiles.c
+++ b/src/datafiles.c
@@ -707,18 +707,16 @@ void backup_databases(void)
curday = tm.tm_yday;
strftime(ext, sizeof(ext), "%Y%m%d", &tm);
- if (!skeleton) {
- rename_database(NickDBName, ext);
- if (s_BotServ) {
- rename_database(BotDBName, ext);
- }
- rename_database(ChanDBName, ext);
- if (s_HostServ) {
- rename_database(HostDBName, ext);
- }
- if (NSEmailReg) {
- rename_database(PreNickDBName, ext);
- }
+ rename_database(NickDBName, ext);
+ if (s_BotServ) {
+ rename_database(BotDBName, ext);
+ }
+ rename_database(ChanDBName, ext);
+ if (s_HostServ) {
+ rename_database(HostDBName, ext);
+ }
+ if (NSEmailReg) {
+ rename_database(PreNickDBName, ext);
}
rename_database(OperDBName, ext);