Fix format string.

Submitted by:	Jörg Sonnenberger <joerg@NetBSD.org>
MFC after:	1 week
This commit is contained in:
Dag-Erling Smørgrav 2014-01-20 11:13:05 +00:00
parent 62b97a9adf
commit 3443b2bc31
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=260904

View File

@ -679,7 +679,7 @@ fetch_ssl_setup_transport_layer(SSL_CTX *ctx, int verbose)
if (getenv("SSL_NO_TLS1") != NULL)
ssl_ctx_options |= SSL_OP_NO_TLSv1;
if (verbose)
fetch_info("SSL options: %x", ssl_ctx_options);
fetch_info("SSL options: %lx", ssl_ctx_options);
SSL_CTX_set_options(ctx, ssl_ctx_options);
}