diff options
author | kaiw <kaiw@FreeBSD.org> | 2014-01-20 19:38:44 +0000 |
---|---|---|
committer | kaiw <kaiw@FreeBSD.org> | 2014-01-20 19:38:44 +0000 |
commit | e9c152dbc2e572c490d3035d77f142253b674ded (patch) | |
tree | ae65253d09d5b1583a6bb647cd383e77be00e687 /lib/libfetch/common.c | |
parent | cb3a8568bd4e3f2bf20a1c342c6957d1a568a5df (diff) | |
parent | 681dcc3c572a6831f4cb5f341c90ea4f9278bc81 (diff) | |
download | FreeBSD-src-e9c152dbc2e572c490d3035d77f142253b674ded.zip FreeBSD-src-e9c152dbc2e572c490d3035d77f142253b674ded.tar.gz |
MFH@260917.
Diffstat (limited to 'lib/libfetch/common.c')
-rw-r--r-- | lib/libfetch/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libfetch/common.c b/lib/libfetch/common.c index 49d268c..fbacb02 100644 --- a/lib/libfetch/common.c +++ b/lib/libfetch/common.c @@ -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); } |