From: Brendan Cully Date: Fri, 29 Jul 2005 06:45:14 +0000 (+0000) Subject: Tweak a poorly-worded error message in the gnutls glue, pointed out by X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a202aec8b63244ece734f0eeddb4d01983fcaf8a;p=neomutt Tweak a poorly-worded error message in the gnutls glue, pointed out by Vincent Lefevre. --- diff --git a/mutt_ssl_gnutls.c b/mutt_ssl_gnutls.c index 577814012..e349be830 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; }