mirror of
https://github.com/curl/curl.git
synced 2026-08-24 19:43:41 +03:00
lib: add "Curl_" prefix to two global functions
To make it clear what they are and according to our styleguide. - Curl_cf_ip_happy_insert_after - Curl_ftp_conns_match Found with: $ nm lib/.libs/libcurl.a | grep ' T ' | grep -vi ' curl' Closes #22245
This commit is contained in:
parent
03f9751585
commit
d3a7e57157
6 changed files with 21 additions and 20 deletions
|
|
@ -202,9 +202,9 @@ static CURLcode cf_setup_add_ip_happy(struct Curl_cfilter *cf,
|
|||
}
|
||||
#endif /* !CURL_DISABLE_PROXY && !CURL_DISABLE_HTTP */
|
||||
|
||||
result = cf_ip_happy_insert_after(cf, data, first_origin, first_peer,
|
||||
first_transport,
|
||||
tunnel_peer, ctx->transport);
|
||||
result = Curl_cf_ip_happy_insert_after(cf, data, first_origin, first_peer,
|
||||
first_transport,
|
||||
tunnel_peer, ctx->transport);
|
||||
if(result) {
|
||||
CURL_TRC_CF(data, cf, "adding happy eyeballs failed -> %d", (int)result);
|
||||
return result;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue