From: André Malo Date: Tue, 19 Aug 2003 12:00:13 +0000 (+0000) Subject: fix misleading ap_get_token description X-Git-Tag: pre_ajp_proxy~1263 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=870b126a01215079c5ee75577a6cc54ae6c5543d;p=thirdparty%2Fapache%2Fhttpd.git fix misleading ap_get_token description git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101014 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/httpd.h b/include/httpd.h index f71373e0c0f..4f43931b3c0 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);