moved the bools in the connectdata struct into the substruct named

ConnectBits where the other bools already are
This commit is contained in:
Daniel Stenberg
2002-11-11 23:03:03 +00:00
parent ca6e770837
commit 42acb00c81
6 changed files with 19 additions and 18 deletions

View File

@@ -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;