From 817a209e9a7f29208e8beaf1aa338f8f7c4862e5 Mon Sep 17 00:00:00 2001 From: Stefan Fritsch Date: Fri, 16 Sep 2011 16:37:06 +0000 Subject: [PATCH] Fix cut'n'paste errors: APR_DECLARE -> AP_DECLARE git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171652 13f79535-47bb-0310-9956-ffa450edef68 --- include/httpd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/httpd.h b/include/httpd.h index d009e68d31..795401550d 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -2076,7 +2076,7 @@ AP_DECLARE(const char *) ap_strstr_c(const char *s, const char *c); * @note ap_random_insecure_bytes() is thread-safe, it uses a mutex on * threaded MPMs. */ -APR_DECLARE(void) ap_random_insecure_bytes(void *buf, apr_size_t size); +AP_DECLARE(void) ap_random_insecure_bytes(void *buf, apr_size_t size); /** * Get a pseudo random number in a range. @@ -2084,7 +2084,7 @@ APR_DECLARE(void) ap_random_insecure_bytes(void *buf, apr_size_t size); * @param max high end of range * @return a number in the range */ -APR_DECLARE(apr_uint32_t) ap_random_pick(apr_uint32_t min, apr_uint32_t max); +AP_DECLARE(apr_uint32_t) ap_random_pick(apr_uint32_t min, apr_uint32_t max); #define AP_NORESTART APR_OS_START_USEERR + 1 -- 2.40.0