Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 050AF200C36 for ; Fri, 10 Mar 2017 17:42:29 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 03AF2160B79; Fri, 10 Mar 2017 16:42:29 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4A041160B67 for ; Fri, 10 Mar 2017 17:42:28 +0100 (CET) Received: (qmail 22029 invoked by uid 500); 10 Mar 2017 16:42:27 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 22019 invoked by uid 99); 10 Mar 2017 16:42:27 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Mar 2017 16:42:27 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id CAC3F3A0460 for ; Fri, 10 Mar 2017 16:42:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1786384 - /httpd/httpd/trunk/server/protocol.c Date: Fri, 10 Mar 2017 16:42:26 -0000 To: cvs@httpd.apache.org From: mrumph@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170310164226.CAC3F3A0460@svn01-us-west.apache.org> archived-at: Fri, 10 Mar 2017 16:42:29 -0000 Author: mrumph Date: Fri Mar 10 16:42:26 2017 New Revision: 1786384 URL: http://svn.apache.org/viewvc?rev=1786384&view=rev Log: Fix some spelling errors in comments Modified: httpd/httpd/trunk/server/protocol.c Modified: httpd/httpd/trunk/server/protocol.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/protocol.c?rev=1786384&r1=1786383&r2=1786384&view=diff ============================================================================== --- httpd/httpd/trunk/server/protocol.c (original) +++ httpd/httpd/trunk/server/protocol.c Fri Mar 10 16:42:26 2017 @@ -521,7 +521,7 @@ AP_CORE_DECLARE(void) ap_parse_uri(reque * * This is not in fact a URI, it's a path. That matters in the * case of a leading double-slash. We need to resolve the issue - * by normalising that out before treating it as a URI. + * by normalizing that out before treating it as a URI. */ while ((uri[0] == '/') && (uri[1] == '/')) { ++uri ; @@ -751,7 +751,7 @@ static int read_request_line(request_rec *((char *)r->protocol + len) = '\0'; rrl_done: - /* For internal integrety and palloc efficiency, reconstruct the_request + /* For internal integrity and palloc efficiency, reconstruct the_request * in one palloc, using only single SP characters, per spec. */ r->the_request = apr_pstrcat(r->pool, r->method, *uri ? " " : NULL, uri, @@ -794,7 +794,7 @@ rrl_done: } /* Determine the method_number and parse the uri prior to invoking error - * handling, such that these fields are available for subsitution + * handling, such that these fields are available for substitution */ r->method_number = ap_method_number_of(r->method); if (r->method_number == M_GET && r->method[0] == 'H') @@ -1057,7 +1057,7 @@ AP_DECLARE(void) ap_get_mime_headers_cor else if (last_field != NULL) { /* Process the previous last_field header line with all obs-folded - * segments already concatinated (this is not operating on the + * segments already concatenated (this is not operating on the * most recently read input line). */