changeset 28725:401a00227615

ssl-gnutls: I think this error message makes a little more sense. The error is meant to indicate that the certificate crt is *not* signed by issuer (where crt_issuer_id is the information extracted from the certificate itself).
author Paul Aurich <paul@darkrain42.org>
date Sat, 10 Oct 2009 03:53:59 +0000
parents fd5471007cbd
children 291c89bfe040 53aab96e61a9 ed88200c79ee
files libpurple/plugins/ssl/ssl-gnutls.c
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/plugins/ssl/ssl-gnutls.c	Sat Oct 10 03:37:48 2009 +0000
+++ b/libpurple/plugins/ssl/ssl-gnutls.c	Sat Oct 10 03:53:59 2009 +0000
@@ -698,9 +698,8 @@
 			crt_issuer_id =
 				purple_certificate_get_issuer_unique_id(crt);
 			purple_debug_info("gnutls/x509",
-					  "Certificate for %s claims to be "
-					  "issued by %s, but the certificate "
-					  "for %s does not match.\n",
+					  "Certificate %s is issued by "
+					  "%s, which does not match %s.\n",
 					  crt_id ? crt_id : "(null)",
 					  crt_issuer_id ? crt_issuer_id : "(null)",
 					  issuer_id ? issuer_id : "(null)");