noproxy: silence unused variable warnings with no ipv6

Follow-up to 36474f1050

Reviewed-by: Daniel Stenberg
Closes #9782
This commit is contained in:
Viktor Szakats 2022-10-22 23:20:26 +00:00
parent f5e5384ec3
commit 9b63dda16e
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -94,6 +94,9 @@ UNITTEST bool Curl_cidr6_match(const char *ipv6,
return TRUE;
#else
(void)ipv6;
(void)network;
(void)bits;
return FALSE;
#endif
}
@ -213,4 +216,3 @@ bool Curl_check_noproxy(const char *name, const char *no_proxy)
}
#endif /* CURL_DISABLE_PROXY */