]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid error in TLS connections due to incorrect format
authorEli Zaretskii <eliz@gnu.org>
Sat, 27 Jun 2015 08:00:38 +0000 (11:00 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 27 Jun 2015 08:00:38 +0000 (11:00 +0300)
* 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)

src/gnutls.c

index cab24048e568a5e53445da0a44cbefe36973f594..864cac5f511d56214973a721a9a69045a0e71bfb 100644 (file)
@@ -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