diff options
Diffstat (limited to 'src/common/tortls.c')
-rw-r--r-- | src/common/tortls.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index c3ba4ae83..60e6f19ca 100644 --- a/src/common/tortls.c +++ b/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) { |