]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix misleading ap_get_token description
authorAndré Malo <nd@apache.org>
Tue, 19 Aug 2003 12:00:13 +0000 (12:00 +0000)
committerAndré Malo <nd@apache.org>
Tue, 19 Aug 2003 12:00:13 +0000 (12:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101014 13f79535-47bb-0310-9956-ffa450edef68

include/httpd.h

index f71373e0c0f360273fa709f10619c7c4dfb37ba3..4f43931b3c011b1fa3ee098bf8c29ff92a2fef80 100644 (file)
@@ -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);