From: Roy Marples Date: Tue, 16 Sep 2008 13:15:21 +0000 (+0000) Subject: Fix compile. X-Git-Tag: v5.0.0~242 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c7d387680c41b35e99a0509dd58c2b8fd38c896;p=thirdparty%2Fdhcpcd.git Fix compile. --- diff --git a/net.h b/net.h index 43cd650c..5750349a 100644 --- a/net.h +++ b/net.h @@ -113,9 +113,9 @@ int if_address(const struct interface *, #define del_address(iface, addr, net) \ if_address(iface, addr, net, NULL, -1) #define has_address(iface, addr, net) \ - do_interface(iface, NULL, 0, NULL, addr, net, 0) + do_interface(iface, NULL, NULL, 0, NULL, addr, net, 0) #define get_address(iface, addr, net) \ - do_interface(iface, NULL, 0, NULL, addr, net, 1) + do_interface(iface, NULL, NULL, 0, NULL, addr, net, 1) int if_route(const struct interface *, const struct in_addr *, const struct in_addr *, const struct in_addr *, int, int);