From e4a53df7db8a8520c552a718ee7671b986312919 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 4 Jan 2009 20:31:23 +0100 Subject: don't exit after --create-db Start the daemon after --create-db. This makes --create-db a flag which discards the old database and starts with a fresh one. --- src/main.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index c44b6df97..d0573e9b3 100644 --- a/src/main.c +++ b/src/main.c @@ -135,10 +135,6 @@ static void openDB(Options * options, char *argv0) if (db_check() < 0) exit(EXIT_FAILURE); db_init(); - if (db_save() < 0) - exit(EXIT_FAILURE); - if (options->createDB) - exit(EXIT_SUCCESS); } } @@ -238,8 +234,7 @@ int main(int argc, char *argv[]) tag_lib_init(); log_init(options.verbose, options.stdOutput); - if (options.createDB <= 0) - listenOnPort(); + listenOnPort(); changeToUser(); -- cgit v1.2.3