mirror of
https://github.com/curl/curl.git
synced 2025-01-30 14:22:33 +08:00
use the LIBCURL_NAME instead of the "hardcoded" string
This commit is contained in:
parent
f5adc8e53f
commit
bae1a75731
@ -5,7 +5,7 @@
|
|||||||
* | (__| |_| | _ <| |___
|
* | (__| |_| | _ <| |___
|
||||||
* \___|\___/|_| \_\_____|
|
* \___|\___/|_| \_\_____|
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000, Daniel Stenberg, <daniel@haxx.se>, et al.
|
* Copyright (C) 2001, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||||
*
|
*
|
||||||
* In order to be useful for every potential user, curl and libcurl are
|
* In order to be useful for every potential user, curl and libcurl are
|
||||||
* dual-licensed under the MPL and the MIT/X-derivate licenses.
|
* dual-licensed under the MPL and the MIT/X-derivate licenses.
|
||||||
@ -1769,7 +1769,8 @@ static CURLcode Connect(struct SessionHandle *data,
|
|||||||
conn->curl_close = Curl_http_close;
|
conn->curl_close = Curl_http_close;
|
||||||
|
|
||||||
#else /* USE_SSLEAY */
|
#else /* USE_SSLEAY */
|
||||||
failf(data, "libcurl was built with SSL disabled, https: not supported!");
|
failf(data, LIBCURL_NAME
|
||||||
|
" was built with SSL disabled, https: not supported!");
|
||||||
return CURLE_UNSUPPORTED_PROTOCOL;
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
||||||
#endif /* !USE_SSLEAY */
|
#endif /* !USE_SSLEAY */
|
||||||
}
|
}
|
||||||
@ -1795,7 +1796,8 @@ static CURLcode Connect(struct SessionHandle *data,
|
|||||||
#ifdef USE_SSLEAY
|
#ifdef USE_SSLEAY
|
||||||
conn->protocol |= PROT_FTPS;
|
conn->protocol |= PROT_FTPS;
|
||||||
#else
|
#else
|
||||||
failf(data, "libcurl was built with SSL disabled, ftps: not supported!");
|
failf(data, LIBCURL_NAME
|
||||||
|
" was built with SSL disabled, ftps: not supported!");
|
||||||
return CURLE_UNSUPPORTED_PROTOCOL;
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
||||||
#endif /* !USE_SSLEAY */
|
#endif /* !USE_SSLEAY */
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user