From: Kevin Day Date: Sun, 24 Jul 2022 03:26:25 +0000 (-0500) Subject: Update: Add +E/++error parameter to firewall. X-Git-Tag: 0.6.0~15 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=f41b017efce47cce4b76f31ee764a86ff542fe0d;p=fll 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. --- 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