]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* The state vinfo doesn't matter here: no client verification done at all.
authorRuediger Pluem <rpluem@apache.org>
Sat, 25 Apr 2009 09:28:21 +0000 (09:28 +0000)
committerRuediger Pluem <rpluem@apache.org>
Sat, 25 Apr 2009 09:28:21 +0000 (09:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@768501 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_vars.c

index 8d6414722713cbe62865ab8a61680d7480bd5be3..c0023e2c27cae93d5da941a922f82e3454ee490f 100644 (file)
@@ -599,7 +599,7 @@ static char *ssl_var_lookup_ssl_cert_verify(apr_pool_t *p, conn_rec *c)
     vrc   = SSL_get_verify_result(ssl);
     xs    = SSL_get_peer_certificate(ssl);
 
-    if (vrc == X509_V_OK && verr == NULL && vinfo == NULL && xs == NULL)
+    if (vrc == X509_V_OK && verr == NULL && xs == NULL)
         /* no client verification done at all */
         result = "NONE";
     else if (vrc == X509_V_OK && verr == NULL && vinfo == NULL && xs != NULL)