cf-socket: remove references to l_ip, l_port

Fixes #13210
Closes #13211
This commit is contained in:
Robert Moreton 2024-03-27 15:21:19 -04:00 committed by Daniel Stenberg
parent c247827a8a
commit d82869d7a5
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

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