summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-10-13 23:07:44 +0200
committerDaniel Stenberg <daniel@haxx.se>2013-10-13 23:08:12 +0200
commitcf12d5b62f77cbd6ef34e8a2587aacb035c208f9 (patch)
tree13b13e8c5ce05067907cbbe4af1976408dcbb958
parent39beaa5ffbccd5b36ae576d32cab2ba0ed3901de (diff)
downloadgnurl-cf12d5b62f77cbd6ef34e8a2587aacb035c208f9.tar.gz
gnurl-cf12d5b62f77cbd6ef34e8a2587aacb035c208f9.tar.bz2
gnurl-cf12d5b62f77cbd6ef34e8a2587aacb035c208f9.zip
OpenSSL: improve the grammar of the language in 39beaa5ffbcc
Reported-by: Petr Pisar
-rw-r--r--lib/ssluse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c
index ef0c88205..c747420f6 100644
--- a/lib/ssluse.c
+++ b/lib/ssluse.c
@@ -1192,8 +1192,8 @@ static CURLcode verifyhost(struct connectdata *conn,
/* an alternative name field existed, but didn't match and then
we MUST fail */
infof(data, "\t subjectAltName does not match %s\n", conn->host.dispname);
- failf(data, "SSL: alternative certificate subject names does not match "
- "target host name '%s'", conn->host.dispname);
+ failf(data, "SSL: no alternative certificate subject name matches "
+ "target host name '%s'", conn->host.dispname);
res = CURLE_PEER_FAILED_VERIFICATION;
}
else {