]> granicus.if.org Git - apache/commitdiff
picking nits - de-tab
authorJim Jagielski <jim@apache.org>
Tue, 5 Aug 2008 16:52:12 +0000 (16:52 +0000)
committerJim Jagielski <jim@apache.org>
Tue, 5 Aug 2008 16:52:12 +0000 (16:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@682788 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_rewrite.c
modules/ssl/ssl_engine_config.c
modules/ssl/ssl_engine_ocsp.c

index 98420679742bde34fb8941879959e65134a83e59..f7f4c9b71aa6356cfdb33e8e7478463b6305af43 100644 (file)
@@ -3999,7 +3999,7 @@ static int apply_rewrite_rule(rewriterule_entry *p, rewrite_ctx *ctx)
      * 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",
index 3d595879c983599b5f78ce3371ef761616909517..8f792c565a4d20c007032f9303addd0d2964c002 100644 (file)
@@ -1389,7 +1389,7 @@ const char *ssl_cmd_SSLOCSPEnable(cmd_parms *cmd, void *dcfg, int flag)
 
     return NULL;
 }
-               
+        
 const char *ssl_cmd_SSLOCSPOverrideResponder(cmd_parms *cmd, void *dcfg, int flag)
 {
     SSLSrvConfigRec *sc = mySrvConfig(cmd->server);
index db4a967a98b166234be7ca979dd661072b335136..a47efd06f1c26693a16801c14be4c44c8e412b98 100644 (file)
@@ -149,7 +149,7 @@ static int verify_ocsp_status(X509 *cert, X509_STORE_CTX *ctx, conn_rec *c,
 
         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 @@ static int verify_ocsp_status(X509 *cert, X509_STORE_CTX *ctx, conn_rec *c,
     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 @@ static int verify_ocsp_status(X509 *cert, X509_STORE_CTX *ctx, conn_rec *c,
         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;
         }
     }