diff options
author | Edward Rudd | 2009-03-15 01:40:56 +0000 |
---|---|---|
committer | Edward Rudd | 2009-03-15 01:40:56 +0000 |
commit | 6a4d9bbe760de40b60634c46c0dc6f3c310b819f (patch) | |
tree | 874f859c1371fd08a2f5cad0ac49180b93350334 | |
parent | b8790b1b48c238f2ba266e34625b8e8f5db0ad6e (diff) |
don't exit upon failure to connect to DB in a thread.. just exit the thread.
-rw-r--r-- | utility/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utility/shell.c b/utility/shell.c index 0fea741..78ab1b7 100644 --- a/utility/shell.c +++ b/utility/shell.c | |||
@@ -281,7 +281,7 @@ void * APR_THREAD_FUNC run_filethread(apr_thread_t *thd, void *data) | |||
281 | if (!cfg->dryrun) { | 281 | if (!cfg->dryrun) { |
282 | if ((rv = database_connect(cfg, &dbconn))) { | 282 | if ((rv = database_connect(cfg, &dbconn))) { |
283 | logging_log(cfg,LOGLEVEL_NOISE, "Error Connecting to Database"); | 283 | logging_log(cfg,LOGLEVEL_NOISE, "Error Connecting to Database"); |
284 | exit(1); | 284 | return NULL; |
285 | } | 285 | } |
286 | } | 286 | } |
287 | 287 | ||