diff options
author | Patrick Monnerat <pm@datasphere.ch> | 2014-10-13 18:34:51 +0200 |
---|---|---|
committer | Patrick Monnerat <pm@datasphere.ch> | 2014-10-13 18:34:51 +0200 |
commit | 357ff4d1dc1209b67183d14f544757abe2c8d60e (patch) | |
tree | d3c6ca5ceeda1dc8c251a988a99f43524680105c /lib/strerror.c | |
parent | 265b9a2e493b685e8118bd027905ed52bcde365a (diff) | |
download | curl-357ff4d1dc1209b67183d14f544757abe2c8d60e.tar.gz |
Factorize pinned public key code into generic file handling and backend specific
Diffstat (limited to 'lib/strerror.c')
-rw-r--r-- | lib/strerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strerror.c b/lib/strerror.c index 1a1360607..6e75579ff 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -299,7 +299,7 @@ curl_easy_strerror(CURLcode error) return "The max connection limit is reached"; case CURLE_SSL_PINNEDPUBKEYNOTMATCH: - return "SSL public key does not matched pinned public key"; + return "SSL public key does not match pinned public key"; /* error codes not used by current libcurl */ case CURLE_OBSOLETE20: |