summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndré Malo <nd@apache.org>2003-08-19 14:00:13 +0200
committerAndré Malo <nd@apache.org>2003-08-19 14:00:13 +0200
commit870b126a01215079c5ee75577a6cc54ae6c5543d (patch)
tree8e20e818fa8295e891ad9c521c17a61c2f169e63 /include
parentCatch an edge case, where strange subsequent RewriteRules (diff)
downloadapache2-870b126a01215079c5ee75577a6cc54ae6c5543d.tar.xz
apache2-870b126a01215079c5ee75577a6cc54ae6c5543d.zip
fix misleading ap_get_token description
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101014 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/httpd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/httpd.h b/include/httpd.h
index f71373e0c0..4f43931b3c 100644
--- a/include/httpd.h
+++ b/include/httpd.h
@@ -1271,14 +1271,14 @@ AP_DECLARE(char *) ap_get_list_item(apr_pool_t *p, const char **field);
AP_DECLARE(int) ap_find_list_item(apr_pool_t *p, const char *line, const char *tok);
/**
- * Retrieve a token, spacing over it and returning a pointer to
+ * Retrieve a token, spacing over it and adjusting the pointer to
* the first non-white byte afterwards. Note that these tokens
* are delimited by semis and commas and can also be delimited
* by whitespace at the caller's option.
* @param p The pool to allocate from
- * @param accept_line The line to retrieve the token from
+ * @param accept_line The line to retrieve the token from (adjusted afterwards)
* @param accept_white Is it delimited by whitespace
- * @return the first non-white byte after the token
+ * @return the token
*/
AP_DECLARE(char *) ap_get_token(apr_pool_t *p, const char **accept_line, int accept_white);