aboutsummaryrefslogtreecommitdiff
path: root/lib/multi.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-11-11 23:03:03 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-11-11 23:03:03 +0000
commit42acb00c815f2cca5bd1e3653c9f3a47e9256572 (patch)
treee0b717d0b9732617e29de0b5aa967cc1f27440e8 /lib/multi.c
parentca6e77083768858aa34207f8c5dce38b3c05336d (diff)
moved the bools in the connectdata struct into the substruct named
ConnectBits where the other bools already are
Diffstat (limited to 'lib/multi.c')
-rw-r--r--lib/multi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/multi.c b/lib/multi.c
index 98700742d..f901f3a0f 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -360,7 +360,7 @@ CURLMcode curl_multi_perform(CURLM *multi_handle, int *running_handles)
if(CURLE_OK == easy->result) {
/* after do, go PERFORM... or DO_MORE */
- if(easy->easy_conn->do_more) {
+ if(easy->easy_conn->bits.do_more) {
/* we're supposed to do more, but we need to sit down, relax
and wait a little while first */
easy->state = CURLM_STATE_DO_MORE;