]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix doxygen warnings
authorJeff Trawick <trawick@apache.org>
Sun, 27 Mar 2011 23:36:03 +0000 (23:36 +0000)
committerJeff Trawick <trawick@apache.org>
Sun, 27 Mar 2011 23:36:03 +0000 (23:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086071 13f79535-47bb-0310-9956-ffa450edef68

include/http_config.h
include/httpd.h
modules/cache/cache_storage.h
modules/cache/cache_util.h

index f7896bc9d01825c40e8a9b2209cc10da47e2fe95..4aca2386a9f63aa0edb26004d1689b31c9a2616d 100644 (file)
@@ -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
index 8086ff8e1c7de3001ef237ff81501e0f6d9980c7..bc577f5fcd3fb2bfdd8763c56f2dc761f6e2136e 100644 (file)
@@ -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);
index 90445f06551020d0477578cc47d6a255d5eae03b..c40041f01eebfbf32221d4852e42f84db3305de0 100644 (file)
@@ -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);
index dc28b6d2c6bc8711ccbf6e635547dee546f299c1..02c92c6409d4519b820f43ca7d6c27cab4caa4bd 100644 (file)
@@ -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