mirror of
https://github.com/curl/curl.git
synced 2026-08-26 02:23:31 +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
|
|
@ -4449,7 +4449,7 @@ static CURLcode ftp_setup_connection(struct Curl_easy *data,
|
|||
return result;
|
||||
}
|
||||
|
||||
bool ftp_conns_match(struct connectdata *needle, struct connectdata *conn)
|
||||
bool Curl_ftp_conns_match(struct connectdata *needle, struct connectdata *conn)
|
||||
{
|
||||
struct ftp_conn *nftpc = Curl_conn_meta_get(needle, CURL_META_FTP_CONN);
|
||||
struct ftp_conn *cftpc = Curl_conn_meta_get(conn, CURL_META_FTP_CONN);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue