diff options
-rw-r--r-- | CHANGES | 3 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTTP.c | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES index cf0cae73..8f4301f1 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,10 @@ --- $LynxId: CHANGES,v 1.655 2013/10/01 19:33:15 tom Exp $ +-- $LynxId: CHANGES,v 1.656 2013/10/01 22:01:16 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== 2013-10-01 (2.8.8dev.17) +* improve warning message for GNUTLS_CERT_SIGNER_NOT_FOUND (Debian #695653) -TD * ignore non-fatal return codes from gnutls_handshake (Debian #724812, patch by Hans Wurst). * updates for configure macros -TD diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c index 220ae35f..7ca34dd6 100644 --- a/WWW/Library/Implementation/HTTP.c +++ b/WWW/Library/Implementation/HTTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTTP.c,v 1.129 2013/10/01 15:09:29 tom Exp $ + * $LynxId: HTTP.c,v 1.130 2013/10/01 21:58:37 tom Exp $ * * HyperText Tranfer Protocol - Client implementation HTTP.c * ========================== @@ -778,7 +778,7 @@ static int HTLoadHTTP(const char *arg, char *msg2; if (ret == 0 && tls_status & GNUTLS_CERT_SIGNER_NOT_FOUND) { - msg2 = gettext("self signed certificate"); + msg2 = gettext("the certificate has no known issuer"); } else if (tls_status & GNUTLS_CERT_SIGNER_NOT_FOUND) { msg2 = gettext("no issuer was found"); } else if (tls_status & GNUTLS_CERT_SIGNER_NOT_CA) { |