aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorMichael Kaufmann <mail@michael-kaufmann.ch>2016-06-21 09:47:34 +0200
committerDaniel Stenberg <daniel@haxx.se>2016-06-21 13:11:40 +0200
commit0bdec5e01d9914d97bb9ed1301b1590162fe2945 (patch)
treed013440edb0f9975ad98ea10cf50b2e220439b68 /lib/urldata.h
parentb2dcf0347f1ee5041cccd64632bb8dd7ccbbae91 (diff)
cleanup: fix method names in code comments
Closes #887
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index bb32b1751..09e6d84e1 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -1347,9 +1347,9 @@ struct UrlState {
size_t drain; /* Increased when this stream has data to read, even if its
socket is not necessarily is readable. Decreased when
checked. */
- bool done; /* set to FALSE when Curl_do() is called and set to TRUE when
- Curl_done() is called, to prevent Curl_done() to get invoked
- twice when the multi interface is used. */
+ bool done; /* set to FALSE when Curl_init_do() is called and set to TRUE
+ when multi_done() is called, to prevent multi_done() to get
+ invoked twice when the multi interface is used. */
curl_read_callback fread_func; /* read callback/function */
void *in; /* CURLOPT_READDATA */