Browse Source

cf-socket: remove references to l_ip, l_port

Fixes #13210
Closes #13211
Robert Moreton 1 month ago
parent
commit
d82869d7a5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/cf-socket.c

+ 2 - 2
lib/cf-socket.c

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