From: Bill Stoddard Date: Fri, 2 Feb 2001 22:31:00 +0000 (+0000) Subject: Ooops, that S and D are right next to each other. X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7e9641b6fb851a755c90fcfa8c84ecccc8f51b36;p=apache Ooops, that S and D are right next to each other. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87960 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/scoreboard.c b/server/scoreboard.c index 795c95fb20..c50a5494e7 100644 --- a/server/scoreboard.c +++ b/server/scoreboard.c @@ -95,7 +95,7 @@ static apr_shmem_t *scoreboard_shm = NULL; */ apr_status_t ap_cleanup_shared_mem(void *d) { -#if APR_HAD_SHARED_MEMORY +#if APR_HAS_SHARED_MEMORY apr_shm_free(scoreboard_shm, ap_scoreboard_image); ap_scoreboard_image = NULL; apr_shm_destroy(scoreboard_shm); @@ -109,7 +109,7 @@ apr_status_t ap_cleanup_shared_mem(void *d) */ static void setup_shared(apr_pool_t *p) { -#if APR_HAD_SHARED_MEMORY +#if APR_HAS_SHARED_MEMORY char buf[512]; char errmsg[120]; const char *fname;