]> granicus.if.org Git - apache/commitdiff
Fix cut'n'paste errors: APR_DECLARE -> AP_DECLARE
authorStefan Fritsch <sf@apache.org>
Fri, 16 Sep 2011 16:37:06 +0000 (16:37 +0000)
committerStefan Fritsch <sf@apache.org>
Fri, 16 Sep 2011 16:37:06 +0000 (16:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171652 13f79535-47bb-0310-9956-ffa450edef68

include/httpd.h

index d009e68d31b7e27f3910ab5fd72b65ad841b4424..795401550ded1e6483051044b7a5ce6aec62bd3f 100644 (file)
@@ -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