diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-14 19:23:27 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-14 19:23:27 +0000 |
commit | c3b9f7f5422161816c33f11952bb6737c1882ab0 (patch) | |
tree | 481e3c61136c3ece4f187af3bc00be1d709e9268 /src/init.c | |
parent | ccf124e35aa7efe3a187762a3e017af28122ee03 (diff) |
BUILD : 1.7.8 (622) BUGS : 317 NOTES : Applied Trystans patch to remove old ifdef convertor code
git-svn-id: svn://svn.anope.org/anope/trunk@622 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@470 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/init.c')
-rw-r--r-- | src/init.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/init.c b/src/init.c index f7650aed4..8c3ad6380 100644 --- a/src/init.c +++ b/src/init.c @@ -318,10 +318,6 @@ static int parse_options(int ac, char **av) forceload = 1; } else if (!strcmp(s, "noexpire")) { noexpire = 1; -#ifdef IS44_CONVERTER - } else if (!strcmp(s, "is44")) { - is44 = 1; -#endif } else if (!strcmp(s, "version")) { fprintf(stdout, "Anope-%s %s %s -- %s\n", version_number, ircd->name, version_flags, version_build); @@ -350,9 +346,6 @@ static int parse_options(int ac, char **av) fprintf(stdout, "-forceload -forceload\n"); fprintf(stdout, "-readonly -readonly\n"); fprintf(stdout, "-noexpire -noexpire\n"); -#ifdef IS44_CONVERTER - fprintf(stdout, "-is44 -is44\n"); -#endif fprintf(stdout, "-version -version\n"); fprintf(stdout, "-help -help\n"); fprintf(stdout, "-log -log logfilename\n"); @@ -599,16 +592,6 @@ int init(int ac, char **av) rand_init(); add_entropy_userkeys(); -#ifdef USE_CONVERTER - /* Convert the databases NOW! */ -# ifdef IS44_CONVERTER - if (is44) { - convert_ircservices_44(); - alog("debug: Databases converted"); - } -# endif -#endif - /* Load up databases */ #ifdef USE_RDB if (UseRDB) |