1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

if2ip.c: Fixed another warning: unused parameter 'remote_scope'

This commit is contained in:
Marc Hoersken 2013-04-07 21:04:39 +02:00
parent 762961fe35
commit 6b8c36954f

View File

@ -89,6 +89,10 @@ if2ip_result_t Curl_if2ip(int af, unsigned int remote_scope,
struct ifaddrs *iface, *head; struct ifaddrs *iface, *head;
if2ip_result_t res = IF2IP_NOT_FOUND; if2ip_result_t res = IF2IP_NOT_FOUND;
#ifndef ENABLE_IPV6
(void) remote_scope;
#endif
if(getifaddrs(&head) >= 0) { if(getifaddrs(&head) >= 0) {
for(iface=head; iface != NULL; iface=iface->ifa_next) { for(iface=head; iface != NULL; iface=iface->ifa_next) {
if(iface->ifa_addr != NULL) { if(iface->ifa_addr != NULL) {