From af1ebdc11fcef72970140ba48f3eff1b8df1ab2d Mon Sep 17 00:00:00 2001 From: Brendan Cully Date: Fri, 29 Jul 2005 06:45:14 +0000 Subject: [PATCH] Tweak a poorly-worded error message in the gnutls glue, pointed out by Vincent Lefevre. --- mutt_ssl_gnutls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mutt_ssl_gnutls.c b/mutt_ssl_gnutls.c index 57781401..e349be83 100644 --- a/mutt_ssl_gnutls.c +++ b/mutt_ssl_gnutls.c @@ -513,7 +513,7 @@ static int tls_check_certificate (CONNECTION* conn) /* We only support X.509 certificates (not OpenPGP) at the moment */ if (gnutls_certificate_type_get(state) != GNUTLS_CRT_X509) { - mutt_error (_("Error certificate is not X.509")); + mutt_error (_("Certificate is not X.509")); mutt_sleep (2); return 0; } -- 2.50.1