connect: drop unused struct member

Follow-up to 283af039c8 #14863

Closes #17908
This commit is contained in:
Viktor Szakats 2025-07-11 22:40:41 +02:00
parent 75395eb003
commit c6b2d3d911
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -390,7 +390,6 @@ struct eyeballer {
expire_id timeout_id; /* ID for Curl_expire() */
CURLcode result;
int error;
BIT(rewinded); /* if we rewinded the addr list */
BIT(has_started); /* attempts have started */
BIT(is_done); /* out of addresses/time */
BIT(connected); /* cf has connected */
@ -474,7 +473,6 @@ static void baller_free(struct eyeballer *baller,
static void baller_rewind(struct eyeballer *baller)
{
baller->rewinded = TRUE;
baller->addr = baller->first;
baller->inconclusive = FALSE;
}