From cvs-return-30711-apmail-httpd-cvs-archive=httpd.apache.org@httpd.apache.org Tue Aug 05 16:53:05 2008 Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 61788 invoked from network); 5 Aug 2008 16:53:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Aug 2008 16:53:05 -0000 Received: (qmail 48581 invoked by uid 500); 5 Aug 2008 16:53:04 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 48530 invoked by uid 500); 5 Aug 2008 16:53:03 -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 48521 invoked by uid 99); 5 Aug 2008 16:53:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Aug 2008 09:53:03 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Aug 2008 16:52:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B67DC2388882; Tue, 5 Aug 2008 09:52:13 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r682788 - in /httpd/httpd/trunk/modules: mappers/mod_rewrite.c ssl/ssl_engine_config.c ssl/ssl_engine_ocsp.c Date: Tue, 05 Aug 2008 16:52:13 -0000 To: cvs@httpd.apache.org From: jim@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080805165213.B67DC2388882@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jim Date: Tue Aug 5 09:52:12 2008 New Revision: 682788 URL: http://svn.apache.org/viewvc?rev=682788&view=rev Log: picking nits - de-tab Modified: httpd/httpd/trunk/modules/mappers/mod_rewrite.c httpd/httpd/trunk/modules/ssl/ssl_engine_config.c httpd/httpd/trunk/modules/ssl/ssl_engine_ocsp.c Modified: httpd/httpd/trunk/modules/mappers/mod_rewrite.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/mappers/mod_rewrite.c?rev=682788&r1=682787&r2=682788&view=diff ============================================================================== --- httpd/httpd/trunk/modules/mappers/mod_rewrite.c (original) +++ httpd/httpd/trunk/modules/mappers/mod_rewrite.c Tue Aug 5 09:52:12 2008 @@ -3999,7 +3999,7 @@ * ourself). */ if (p->flags & RULEFLAG_PROXY) { - /* PR#39746: Escaping things here gets repeated in mod_proxy */ + /* PR#39746: Escaping things here gets repeated in mod_proxy */ fully_qualify_uri(r); rewritelog((r, 2, ctx->perdir, "forcing proxy-throughput with %s", Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_config.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_config.c?rev=682788&r1=682787&r2=682788&view=diff ============================================================================== --- httpd/httpd/trunk/modules/ssl/ssl_engine_config.c (original) +++ httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Tue Aug 5 09:52:12 2008 @@ -1389,7 +1389,7 @@ return NULL; } - + const char *ssl_cmd_SSLOCSPOverrideResponder(cmd_parms *cmd, void *dcfg, int flag) { SSLSrvConfigRec *sc = mySrvConfig(cmd->server); Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_ocsp.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_ocsp.c?rev=682788&r1=682787&r2=682788&view=diff ============================================================================== --- httpd/httpd/trunk/modules/ssl/ssl_engine_ocsp.c (original) +++ httpd/httpd/trunk/modules/ssl/ssl_engine_ocsp.c Tue Aug 5 09:52:12 2008 @@ -149,7 +149,7 @@ if (r != OCSP_RESPONSE_STATUS_SUCCESSFUL) { ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, - "OCSP response not successful: %d", rc); + "OCSP response not successful: %d", rc); rc = V_OCSP_CERTSTATUS_UNKNOWN; } } @@ -167,7 +167,7 @@ if (rc == V_OCSP_CERTSTATUS_GOOD) { if (OCSP_check_nonce(request, basicResponse) != 1) { ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, - "Bad OCSP responder answer (bad nonce)"); + "Bad OCSP responder answer (bad nonce)"); rc = V_OCSP_CERTSTATUS_UNKNOWN; } } @@ -177,7 +177,7 @@ if (OCSP_basic_verify(basicResponse, NULL, ctx->ctx, 0) != 1) { ssl_log_ssl_error(APLOG_MARK, APLOG_ERR, s); ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, - "failed to verify the OCSP response"); + "failed to verify the OCSP response"); rc = V_OCSP_CERTSTATUS_UNKNOWN; } }