From: Christophe Jaillet Date: Thu, 22 Mar 2018 21:07:02 +0000 (+0000) Subject: Fix some doxygen comment X-Git-Tag: 2.5.0-alpha2-ci-test-only~2764 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=005ffe14d80c9cfbc04ecaf88aeb707866b9d0b2;p=thirdparty%2Fapache%2Fhttpd.git Fix some doxygen comment git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1827529 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_protocol.h b/include/http_protocol.h index 9b8e754100a..4ddee84adce 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -677,8 +677,8 @@ AP_DECLARE(apr_status_t) ap_rgetline(char **s, apr_size_t n, request_rec *r, int flags, apr_bucket_brigade *bb); #else /* ASCII box */ -#define ap_rgetline(s, n, read, r, fold, bb) \ - ap_rgetline_core((s), (n), (read), (r), (fold), (bb)) +#define ap_rgetline(s, n, read, r, flags, bb) \ + ap_rgetline_core((s), (n), (read), (r), (flags), (bb)) #endif /** @see ap_rgetline */ @@ -817,8 +817,7 @@ AP_DECLARE_HOOK(int,protocol_propose,(conn_rec *c, request_rec *r, * @param c The current connection * @param r The current request or NULL * @param s The server/virtual host selected - * @param choices A list of protocol identifiers, normally the client's wishes - * @param proposals the list of protocol identifiers proposed by the hooks + * @param protocol The protocol identifier we try to swicth to * @return OK or DECLINED */ AP_DECLARE_HOOK(int,protocol_switch,(conn_rec *c, request_rec *r,