svn commit: r260904 - head/lib/libfetch

Dag-Erling Smørgrav des at FreeBSD.org
Mon Jan 20 11:13:06 UTC 2014


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 <joerg at NetBSD.org>
  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);
 }
 


More information about the svn-src-head mailing list