]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
connect: drop unused struct member
authorViktor Szakats <commit@vsz.me>
Fri, 11 Jul 2025 20:40:41 +0000 (22:40 +0200)
committerViktor Szakats <commit@vsz.me>
Sat, 12 Jul 2025 06:59:44 +0000 (08:59 +0200)
Follow-up to 283af039c819bd8039f8d7314f924079782d5abb #14863

Closes #17908

lib/connect.c

index 406206d493d70813ed5402479a4fb594a949ce0b..c894fe62b033e239a8471275c1e2d9c1b972e183 100644 (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;
 }