From 93e8100c671aada52d8dc5690bfcc1008be6fe86 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Fri, 26 Jul 2024 20:50:15 +0200 Subject: [PATCH] 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 --- iptables/xshared.c | 2 +- iptables/xshared.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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); -- 2.47.3