Author: des Date: Mon Jan 20 11:13:05 2014 New Revision: 260904 URL: http://svnweb.freebsd.org/changeset/base/260904
Log: Fix format string. Submitted by: Jörg Sonnenberger <[email protected]> MFC after: 1 week Modified: head/lib/libfetch/common.c Modified: head/lib/libfetch/common.c ============================================================================== --- head/lib/libfetch/common.c Mon Jan 20 07:09:19 2014 (r260903) +++ head/lib/libfetch/common.c Mon Jan 20 11:13:05 2014 (r260904) @@ -679,7 +679,7 @@ fetch_ssl_setup_transport_layer(SSL_CTX 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); } _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
