From: William A. Rowe Jr Date: Mon, 22 Aug 2016 19:29:46 +0000 (+0000) Subject: Backports: r1237407 X-Git-Tag: 2.2.32~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e61299de7bfe9889a068921d22d65fd52f92631;p=thirdparty%2Fapache%2Fhttpd.git Backports: r1237407 Submitted by: trawick s/ensure/insure/ Comment-only change, simply to ensure reviewers can review patches from trunk. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1757256 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index bbe997cb94a..eb1400a6e94 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -449,7 +449,7 @@ AP_DECLARE(apr_status_t) ap_rgetline(char **s, apr_size_t n, * on EBCDIC boxes, each complete http protocol input line needs to be * translated into the code page used by the compiler. Since * ap_rgetline_core uses recursion, we do the translation in a wrapper - * function to insure that each input character gets translated only once. + * function to ensure that each input character gets translated only once. */ apr_status_t rv; @@ -583,7 +583,7 @@ static int read_request_line(request_rec *r, apr_bucket_brigade *bb) do { apr_status_t rv; - /* insure ap_rgetline allocates memory each time thru the loop + /* ensure ap_rgetline allocates memory each time thru the loop * if there are empty lines */ r->the_request = NULL; @@ -700,7 +700,7 @@ AP_DECLARE(void) ap_get_mime_headers_core(request_rec *r, apr_bucket_brigade *bb * exceeds the configured limit for a field size. */ if (rv == APR_ENOSPC && field) { - /* insure ap_escape_html will terminate correctly */ + /* ensure ap_escape_html will terminate correctly */ field[len - 1] = '\0'; apr_table_setn(r->notes, "error-notes", apr_psprintf(r->pool,