Explorar el Código

Log number of certs in wrong-length chains

svn:r2078
Nick Mathewson hace 21 años
padre
commit
2d514037b7
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/common/tortls.c

+ 2 - 1
src/common/tortls.c

@@ -623,7 +623,8 @@ tor_tls_verify(tor_tls *tls, crypto_pk_env_t **identity_key)
   if (!(chain = SSL_get_peer_cert_chain(tls->ssl)))
     goto done;
   if (sk_X509_num(chain) != 2) {
-    log_fn(LOG_WARN,"Unexpected number of certificates in chain");
+    log_fn(LOG_WARN,"Unexpected number of certificates in chain (%d)",
+           sk_X509_num(chain));
     goto done;
   }
   for (i=0; i<2; ++i) {