From: Phil Sutter Date: Fri, 26 Jul 2024 18:50:15 +0000 (+0200) Subject: xshared: Make save_iface() static X-Git-Tag: v1.8.11~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=93e8100c671aada52d8dc5690bfcc1008be6fe86;p=thirdparty%2Fiptables.git xshared: Make save_iface() static Since commit 22f2e1fca127b ("xshared: Share save_rule_details() with legacy"), there are no callers outside of xshared.c anymore. Signed-off-by: Phil Sutter --- diff --git a/iptables/xshared.c b/iptables/xshared.c index 8c7df3c9..1070fea4 100644 --- a/iptables/xshared.c +++ b/iptables/xshared.c @@ -757,7 +757,7 @@ void print_ifaces(const char *iniface, const char *outiface, uint8_t invflags, printf(FMT("%-6s ", "out %s "), iface); } -void save_iface(char letter, const char *iface, int invert) +static void save_iface(char letter, const char *iface, int invert) { if (!strlen(iface) || (!strcmp(iface, "+") && !invert)) return; diff --git a/iptables/xshared.h b/iptables/xshared.h index 26c492eb..0018b7c7 100644 --- a/iptables/xshared.h +++ b/iptables/xshared.h @@ -216,7 +216,6 @@ void save_ipv6_addr(char letter, const struct in6_addr *addr, void print_ifaces(const char *iniface, const char *outiface, uint8_t invflags, unsigned int format); -void save_iface(char letter, const char *iface, int invert); void print_fragment(unsigned int flags, unsigned int invflags, unsigned int format, bool fake);