diff options
author | Eli Zaretskii <eliz@gnu.org> | 2015-06-27 11:00:38 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2015-06-27 11:00:38 +0300 |
commit | 5a7fb4f0cc5a21808ab6fa062050059ceac027e4 (patch) | |
tree | 5e177c37e336eb923f557c14251b1f6376b59af7 /src/gnutls.c | |
parent | 45fd93603747b64223291450ad89cf5a647f6701 (diff) |
Avoid error in TLS connections due to incorrect format
* src/gnutls.c (Fgnutls_boot): Use the %x conversion specifier in
the call to 'error', instead of the unsupported %u. Reported by
lo2net <fangtao0901@gmail.com>. (Bug#20908)
Diffstat (limited to 'src/gnutls.c')
-rw-r--r-- | src/gnutls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gnutls.c b/src/gnutls.c index cab24048e5..864cac5f51 100644 --- a/src/gnutls.c +++ b/src/gnutls.c @@ -1512,7 +1512,7 @@ one trustfile (usually a CA bundle). */) || !NILP (Fmember (QCgnutls_bootprop_trustfiles, verify_error))) { emacs_gnutls_deinit (proc); - error ("Certificate validation failed %s, verification code %u", + error ("Certificate validation failed %s, verification code %x", c_hostname, peer_verification); } else |