mirror of
https://github.com/curl/curl.git
synced 2026-08-25 14:23:39 +03:00
source cleanup: unify look, style and indent levels
By the use of a the new lib/checksrc.pl script that checks that our basic source style rules are followed.
This commit is contained in:
parent
592eda8e3f
commit
b903186fa0
88 changed files with 1411 additions and 1577 deletions
|
|
@ -29,7 +29,7 @@
|
|||
(defined(HAVE_POSIX_STRERROR_R) && defined(HAVE_VXWORKS_STRERROR_R)) || \
|
||||
(defined(HAVE_GLIBC_STRERROR_R) && defined(HAVE_VXWORKS_STRERROR_R)) || \
|
||||
(defined(HAVE_POSIX_STRERROR_R) && defined(HAVE_GLIBC_STRERROR_R))
|
||||
# error "strerror_r MUST be either POSIX-style, glibc-style or vxworks-style"
|
||||
# error "strerror_r MUST be either POSIX, glibc or vxworks-style"
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
|
@ -205,7 +205,8 @@ curl_easy_strerror(CURLcode error)
|
|||
return "Couldn't use specified SSL cipher";
|
||||
|
||||
case CURLE_SSL_CACERT:
|
||||
return "Peer certificate cannot be authenticated with known CA certificates";
|
||||
return "Peer certificate cannot be authenticated with given CA "
|
||||
"certificates";
|
||||
|
||||
case CURLE_SSL_CACERT_BADFILE:
|
||||
return "Problem with the SSL CA cert (path? access rights?)";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue