]> granicus.if.org Git - neomutt/commitdiff
Tweak a poorly-worded error message in the gnutls glue, pointed out by
authorBrendan Cully <brendan@kublai.com>
Fri, 29 Jul 2005 06:45:14 +0000 (06:45 +0000)
committerBrendan Cully <brendan@kublai.com>
Fri, 29 Jul 2005 06:45:14 +0000 (06:45 +0000)
Vincent Lefevre.

mutt_ssl_gnutls.c

index 577814012db1cac4c6cbd79c86bdbcf03038775a..e349be830ec0a19c8f66fc4e14f1751f710fde19 100644 (file)
@@ -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;
   }