aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-05-28 10:12:05 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-05-28 10:13:39 +0200
commit155551c4465485dc4e754b0056f57cffcd925a94 (patch)
tree9d115c4e76aa3f75e1294c79973c6e1bc852d4d0 /lib
parent697f984ec97cb7217490b937fc8c280eb7d753fa (diff)
urldata: fix comments: Curl_done() is called multi_done() now
... since 575e885db
Diffstat (limited to 'lib')
-rw-r--r--lib/urldata.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 60323311e..20ce5ed10 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -878,13 +878,13 @@ struct connectdata {
/* 'dns_entry' is the particular host we use. This points to an entry in the
DNS cache and it will not get pruned while locked. It gets unlocked in
- Curl_done(). This entry will be NULL if the connection is re-used as then
+ multi_done(). This entry will be NULL if the connection is re-used as then
there is no name resolve done. */
struct Curl_dns_entry *dns_entry;
/* 'ip_addr' is the particular IP we connected to. It points to a struct
within the DNS cache, so this pointer is only valid as long as the DNS
- cache entry remains locked. It gets unlocked in Curl_done() */
+ cache entry remains locked. It gets unlocked in multi_done() */
struct Curl_addrinfo *ip_addr;
struct Curl_addrinfo *tempaddr[2]; /* for happy eyeballs */