You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2011/09/16 18:37:06 UTC

svn commit: r1171652 - /httpd/httpd/trunk/include/httpd.h

Author: sf
Date: Fri Sep 16 16:37:06 2011
New Revision: 1171652

URL: http://svn.apache.org/viewvc?rev=1171652&view=rev
Log:
Fix cut'n'paste errors: APR_DECLARE -> AP_DECLARE

Modified:
    httpd/httpd/trunk/include/httpd.h

Modified: httpd/httpd/trunk/include/httpd.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/httpd.h?rev=1171652&r1=1171651&r2=1171652&view=diff
==============================================================================
--- httpd/httpd/trunk/include/httpd.h (original)
+++ httpd/httpd/trunk/include/httpd.h Fri Sep 16 16:37:06 2011
@@ -2076,7 +2076,7 @@ AP_DECLARE(const char *) ap_strstr_c(con
  * @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_byt
  * @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