aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.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/ftp.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/ftp.c')
-rw-r--r--lib/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 270154f9f..387807942 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -2089,7 +2089,7 @@ CURLcode Curl_ftp(struct connectdata *conn)
retcode = Curl_ftp_nextconnect(conn);
else
/* since we didn't connect now, we want do_more to get called */
- conn->do_more = TRUE;
+ conn->bits.do_more = TRUE;
}
return retcode;