Use Gnulib's quote function in gnutls.c.

This commit is contained in:
Steven Schubiger 2008-04-16 12:04:53 +02:00
parent bb1813ebb1
commit 1daacbb296
2 changed files with 7 additions and 6 deletions

View File

@ -6,6 +6,7 @@
* convert.c: Likewise.
* cookies.c: Likewise.
* ftp-opie.c: Likewise.
* gnutls.c: Likewise.
2008-04-16 Steven Schubiger <schubiger@gmail.com>

View File

@ -230,20 +230,20 @@ ssl_check_certificate (int fd, const char *host)
if (status & GNUTLS_CERT_INVALID)
{
logprintf (LOG_NOTQUIET, _("%s: The certificate of `%s' is not trusted.\n"),
severity, escnonprint (host));
logprintf (LOG_NOTQUIET, _("%s: The certificate of %s is not trusted.\n"),
severity, quote (escnonprint (host)));
success = false;
}
if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
{
logprintf (LOG_NOTQUIET, _("%s: The certificate of `%s' hasn't got a known issuer.\n"),
severity, escnonprint (host));
logprintf (LOG_NOTQUIET, _("%s: The certificate of %s hasn't got a known issuer.\n"),
severity, quote (escnonprint (host)));
success = false;
}
if (status & GNUTLS_CERT_REVOKED)
{
logprintf (LOG_NOTQUIET, _("%s: The certificate of `%s' has been revoked.\n"),
severity, escnonprint (host));
logprintf (LOG_NOTQUIET, _("%s: The certificate of %s has been revoked.\n"),
severity, quote (escnonprint (host)));
success = false;
}