diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-10-03 08:07:50 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-10-03 08:07:50 +0000 |
commit | ce81cd21d3865270867d68935c9700dbaf5b5fcc (patch) | |
tree | 5744d2d3f3e4873b9597b550b71ac3640147746e /docs | |
parent | 51c6a5d43b09835289a469165aa7a2bfb79dbdc6 (diff) |
I renamed the CURLE_SSL_PEER_CERTIFICATE error code to
CURLE_PEER_FAILED_VERIFICATION (standard CURL_NO_OLDIES style), and made this
return code get used by the previous SSH MD5 fingerprint check in case it
fails.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/curl.1 | 2 | ||||
-rw-r--r-- | docs/libcurl/libcurl-errors.3 | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/curl.1 b/docs/curl.1 index 26d70b8d2..61af057ac 100644 --- a/docs/curl.1 +++ b/docs/curl.1 @@ -1512,7 +1512,7 @@ Unknown TELNET option specified. .IP 49 Malformed telnet option. .IP 51 -The remote peer's SSL certificate wasn't ok +The peer's SSL certificate or SSH MD5 fingerprint was not ok .IP 52 The server didn't reply anything, which here is considered an error. .IP 53 diff --git a/docs/libcurl/libcurl-errors.3 b/docs/libcurl/libcurl-errors.3 index 1d8f4e88b..a686793f7 100644 --- a/docs/libcurl/libcurl-errors.3 +++ b/docs/libcurl/libcurl-errors.3 @@ -148,8 +148,8 @@ An option set with CURLOPT_TELNETOPTIONS was not recognized/known. Refer to the appropriate documentation. .IP "CURLE_TELNET_OPTION_SYNTAX (49)" A telnet option string was Illegally formatted. -.IP "CURLE_SSL_PEER_CERTIFICATE (51)" -The remote server's SSL certificate was deemed not OK. +.IP "CURLE_PEER_FAILED_VERIFICATION (51)" +The remote server's SSL certificate or SSH md5 fingerprint was deemed not OK. .IP "CURLE_GOT_NOTHING (52)" Nothing was returned from the server, and under the circumstances, getting nothing is considered an error. |