From 3519f4e61b6847643ac70cf0b0d3a6162a707f9b Mon Sep 17 00:00:00 2001 From: Matthias Schiffer <mschiffer@universe-factory.net> Date: Fri, 27 Apr 2018 14:38:01 +0200 Subject: [PATCH] gluon-radv-filterd: correct call to ebtables-tiny Fixes: 8e5abf02ae05 ("treewide: switch to ebtables-tiny") --- package/gluon-radv-filterd/src/gluon-radv-filterd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package/gluon-radv-filterd/src/gluon-radv-filterd.c b/package/gluon-radv-filterd/src/gluon-radv-filterd.c index 5fcab4392..7525518cf 100644 --- a/package/gluon-radv-filterd/src/gluon-radv-filterd.c +++ b/package/gluon-radv-filterd/src/gluon-radv-filterd.c @@ -167,11 +167,11 @@ static void cleanup(void) { if (G.chain) { /* Reset chain to accept everything again */ - if (fork_execvp_timeout(&timeout, "ebtables", (const char *[]) + if (fork_execvp_timeout(&timeout, "ebtables-tiny", (const char *[]) { "ebtables-tiny", "-F", G.chain, NULL })) DEBUG_MSG("warning: flushing ebtables chain %s failed, not adding a new rule", G.chain); - if (fork_execvp_timeout(&timeout, "ebtables", (const char *[]) + if (fork_execvp_timeout(&timeout, "ebtables-tiny", (const char *[]) { "ebtables-tiny", "-A", G.chain, "-j", "ACCEPT", NULL })) DEBUG_MSG("warning: adding new rule to ebtables chain %s failed", G.chain); } @@ -719,10 +719,10 @@ static void update_ebtables(void) { G.max_tq); G.best_router = router; - if (fork_execvp_timeout(&timeout, "ebtables", (const char *[]) + if (fork_execvp_timeout(&timeout, "ebtables-tiny", (const char *[]) { "ebtables-tiny", "-F", G.chain, NULL })) error_message(0, 0, "warning: flushing ebtables chain %s failed, not adding a new rule", G.chain); - else if (fork_execvp_timeout(&timeout, "ebtables", (const char *[]) + else if (fork_execvp_timeout(&timeout, "ebtables-tiny", (const char *[]) { "ebtables-tiny", "-A", G.chain, "-s", mac, "-j", "ACCEPT", NULL })) error_message(0, 0, "warning: adding new rule to ebtables chain %s failed", G.chain); } -- GitLab