From f41b017efce47cce4b76f31ee764a86ff542fe0d Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 23 Jul 2022 22:26:25 -0500 Subject: [PATCH] Update: Add +E/++error parameter to firewall. The previous security commit 7348813d0af17acda440eb66c038f6bdd07c1a6e is the result of an incomplete addition of the +E/++error parameter. The size of the total parameters was incremented to ensure space for the +E/++error but the +E/++error was never added. This increments the total parameters and adds the +E/++error row. --- level_3/firewall/c/common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/level_3/firewall/c/common.h b/level_3/firewall/c/common.h index 35fea27..fc89224 100644 --- a/level_3/firewall/c/common.h +++ b/level_3/firewall/c/common.h @@ -389,6 +389,7 @@ extern "C" { macro_f_console_parameter_t_initialize(f_console_standard_short_dark_s.string, f_console_standard_long_dark_s.string, 0, 0, f_console_type_inverse_e), \ macro_f_console_parameter_t_initialize(f_console_standard_short_no_color_s.string, f_console_standard_long_no_color_s.string, 0, 0, f_console_type_inverse_e), \ macro_f_console_parameter_t_initialize(f_console_standard_short_quiet_s.string, f_console_standard_long_quiet_s.string, 0, 0, f_console_type_inverse_e), \ + macro_f_console_parameter_t_initialize(f_console_standard_short_error_s.string, f_console_standard_long_error_s.string, 0, 0, f_console_type_inverse_e), \ macro_f_console_parameter_t_initialize(f_console_standard_short_normal_s.string, f_console_standard_long_normal_s.string, 0, 0, f_console_type_inverse_e), \ macro_f_console_parameter_t_initialize(f_console_standard_short_verbose_s.string, f_console_standard_long_verbose_s.string, 0, 0, f_console_type_inverse_e), \ macro_f_console_parameter_t_initialize(f_console_standard_short_debug_s.string, f_console_standard_long_debug_s.string, 0, 0, f_console_type_inverse_e), \ @@ -400,7 +401,7 @@ extern "C" { macro_f_console_parameter_t_initialize(0, 0, firewall_command_show_s.string, F_false, f_console_type_other_e), \ } - #define firewall_total_parameters_d 14 + #define firewall_total_parameters_d 15 #endif // _di_firewall_defines_ #ifdef __cplusplus -- 1.8.3.1