]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
cf-socket: remove references to l_ip, l_port
authorRobert Moreton <rmoreton@google.com>
Wed, 27 Mar 2024 19:21:19 +0000 (15:21 -0400)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 28 Mar 2024 07:51:19 +0000 (08:51 +0100)
Fixes #13210
Closes #13211

lib/cf-socket.c

index 1de5100062742a64868fedd1ffe950e455a0dd8b..a5feb6b95ab2b625effe545c59368d087ff7e6d1 100644 (file)
@@ -946,8 +946,8 @@ static CURLcode set_local_ip(struct Curl_cfilter *cf,
   }
 #else
   (void)data;
-  ctx->l_ip[0] = 0;
-  ctx->l_port = -1;
+  ctx->ip.local_ip[0] = 0;
+  ctx->ip.local_port = -1;
 #endif
   return CURLE_OK;
 }