From ac59ef20688894bda28eff88d3a76668c1d73f0b Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Tue, 20 Jan 2009 21:22:10 +0000 Subject: [PATCH] * We need to return an int not a pointer! git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@736110 13f79535-47bb-0310-9956-ffa450edef68 --- server/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/log.c b/server/log.c index 5de7bb89fc..4fdd05ac92 100644 --- a/server/log.c +++ b/server/log.c @@ -340,7 +340,7 @@ static int open_error_log(server_rec *s, int is_main, apr_pool_t *p) ap_log_error(APLOG_MARK, APLOG_STARTUP, APR_EBADPATH, NULL, "%s: Invalid error log path '%s'.", ap_server_argv0, s->error_fname); - return NULL; + return DONE; } /* Spawn a new child logger. If this is the main server_rec, -- 2.50.1