From 2f6fe6f1216c9c39356c765d9d7fa04697541f38 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 16 Feb 2011 12:11:28 +0000 Subject: [PATCH] ap_main_state and ap_run_mode should be marked "extern" git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1071217 13f79535-47bb-0310-9956-ffa450edef68 --- include/http_main.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/http_main.h b/include/http_main.h index 1079507c80..d23e049924 100644 --- a/include/http_main.h +++ b/include/http_main.h @@ -48,9 +48,9 @@ AP_DECLARE_DATA extern server_rec *ap_server_conf; /** global pool, for access prior to creation of server_rec */ AP_DECLARE_DATA extern apr_pool_t *ap_pglobal; /** state of the server (startup, exiting, ...) */ -AP_DECLARE_DATA int ap_main_state; +AP_DECLARE_DATA extern int ap_main_state; /** run mode (normal, config test, config dump, ...) */ -AP_DECLARE_DATA int ap_run_mode; +AP_DECLARE_DATA extern int ap_run_mode; /* for -C, -c and -D switches */ /** An array of all -C directives. These are processed before the server's -- 2.40.0