# HG changeset patch # User Gregory Szorc # Date 1467421431 25200 # Node ID 4e72995f6c9cb6d873129f6ae63374433409e729 # Parent 5caa415aa48bea7f91af3c0fe3c8bd386f6ba7f7 sslutil: change comment and logged message for found ca cert file Future patches will change _defaultcacerts() to do something on platforms that aren't OS X. Change the comment and logged message to reflect the future. diff -r 5caa415aa48b -r 4e72995f6c9c mercurial/sslutil.py --- a/mercurial/sslutil.py Fri Jul 01 19:27:34 2016 -0700 +++ b/mercurial/sslutil.py Fri Jul 01 18:03:51 2016 -0700 @@ -196,10 +196,10 @@ raise error.Abort(_('could not find web.cacerts: %s') % cafile) else: - # No global CA certs. See if we can load defaults. + # CAs not defined in config. Try to find system bundles. cafile = _defaultcacerts() if cafile: - ui.debug('using %s to enable OS X system CA\n' % cafile) + ui.debug('using %s for CA file\n' % cafile) s['cafile'] = cafile