From ed3065da430a5db6892cb5964d6674251c0309de Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Tue, 12 May 2020 13:54:19 +0000 Subject: [PATCH] Fix compile on Linux and Solaris --- src/if-linux.c | 2 +- src/if-sun.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/if-linux.c b/src/if-linux.c index c50d714e..2e86fe61 100644 --- a/src/if-linux.c +++ b/src/if-linux.c @@ -342,7 +342,7 @@ if_ignore(__unused struct dhcpcd_ctx *ctx, const char *ifname) /* XXX work out Virtal Interface Masters */ int -if_vimaster(__unused const struct dhcpcd_ctx *ctx, __unused const char *ifname) +if_vimaster(__unused struct dhcpcd_ctx *ctx, __unused const char *ifname) { return 0; diff --git a/src/if-sun.c b/src/if-sun.c index 2339e236..fdd9a031 100644 --- a/src/if-sun.c +++ b/src/if-sun.c @@ -280,7 +280,7 @@ if_vlanid(__unused const struct interface *ifp) } int -if_vimaster(__unused const struct dhcpcd_ctx *ctx, __unused const char *ifname) +if_vimaster(__unused struct dhcpcd_ctx *ctx, __unused const char *ifname) { return 0; -- 2.47.2