From: Jeff Trawick Date: Sun, 27 Mar 2011 23:36:03 +0000 (+0000) Subject: fix doxygen warnings X-Git-Tag: 2.3.12~171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc956c30c389c1f4f907126fa2fc2cafa8ee72e4;p=thirdparty%2Fapache%2Fhttpd.git fix doxygen warnings git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086071 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_config.h b/include/http_config.h index f7896bc9d01..4aca2386a9f 100644 --- a/include/http_config.h +++ b/include/http_config.h @@ -402,7 +402,7 @@ struct module_struct { * APLOG_USE_MODULE indirectly sets APLOG_MODULE_INDEX and APLOG_MARK. * * If a module should be backward compatible with versions before 2.3.6, - * APLOG_USE_MODULE needs to be enclosed in a #ifdef APLOG_USE_MODULE block. + * APLOG_USE_MODULE needs to be enclosed in a ifdef APLOG_USE_MODULE block. * * @param foo name of the module symbol of the current module, without the * trailing "_module" part diff --git a/include/httpd.h b/include/httpd.h index 8086ff8e1c7..bc577f5fcd3 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -1494,6 +1494,7 @@ AP_DECLARE(int) ap_unescape_url(char *url); /** * Unescape a URL, but leaving %2f (slashes) escaped * @param url The url to unescape + * @param decode_slashes Whether or not slashes should be decoded * @return 0 on success, non-zero otherwise */ AP_DECLARE(int) ap_unescape_url_keep2f(char *url, int decode_slashes); diff --git a/modules/cache/cache_storage.h b/modules/cache/cache_storage.h index 90445f06551..c40041f01ee 100644 --- a/modules/cache/cache_storage.h +++ b/modules/cache/cache_storage.h @@ -49,7 +49,7 @@ int cache_select(cache_request_rec *cache, request_rec *r); * * This function returns OK if at least one entity was found and * removed, and DECLINED if no cached entities were removed. - * @param h cache_handle_t + * @param cache cache_request_rec * @param r request_rec */ int cache_invalidate(cache_request_rec *cache, request_rec *r); diff --git a/modules/cache/cache_util.h b/modules/cache/cache_util.h index dc28b6d2c6b..02c92c6409d 100644 --- a/modules/cache/cache_util.h +++ b/modules/cache/cache_util.h @@ -242,6 +242,7 @@ CACHE_DECLARE(int) ap_cache_check_allowed(cache_request_rec *cache, request_rec /** * Check the freshness of the cache object per RFC2616 section 13.2 (Expiration Model) + * @param h cache_handle_t * @param cache cache_request_rec * @param r request_rec * @return 0 ==> cache object is stale, 1 ==> cache object is fresh