From f682599428b5a60e75652641497f265ed03934a3 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 22 Jul 2019 20:44:26 -0500 Subject: [PATCH] Cleanup: make sure 'iptables' appears in error message 'Failed to perform requested iptables operation' --- level_3/firewall/c/firewall.c | 1 + 1 file changed, 1 insertion(+) diff --git a/level_3/firewall/c/firewall.c b/level_3/firewall/c/firewall.c index 27c00bb..8bc93f1 100644 --- a/level_3/firewall/c/firewall.c +++ b/level_3/firewall/c/firewall.c @@ -354,6 +354,7 @@ extern "C"{ fl_print_color_code(f_standard_error, data->context.error); + fprintf(f_standard_error, "%s ", firewall_tool_iptables); for (; i < arguments.used; i++) { fprintf(f_standard_error, "%s ", arguments.array[i].string); } -- 1.8.3.1