From: Kevin Day Date: Fri, 6 May 2022 23:08:18 +0000 (-0500) Subject: Cleanup: Rename 'Available Commands' to 'Commands' in Firewall program. X-Git-Tag: 0.5.10~164 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=452dbea12fa43ac0f35e8b10dafe2dd65dd6e0ed;p=fll Cleanup: Rename 'Available Commands' to 'Commands' in Firewall program. --- diff --git a/level_3/firewall/c/firewall.c b/level_3/firewall/c/firewall.c index a2c3ed9..da62595 100644 --- a/level_3/firewall/c/firewall.c +++ b/level_3/firewall/c/firewall.c @@ -29,7 +29,7 @@ extern "C" { fll_program_print_help_option(file, context, f_console_standard_short_debug_s, f_console_standard_long_debug_s, f_console_symbol_short_disable_s, f_console_symbol_long_disable_s, " Enable debugging, significantly increasing verbosity beyond normal output."); fll_program_print_help_option(file, context, f_console_standard_short_version_s, f_console_standard_long_version_s, f_console_symbol_short_disable_s, f_console_symbol_long_disable_s, " Print only the version number."); - fl_print_format("%r%r %[Available Commands:%] ", file.stream, f_string_eol_s, f_string_eol_s, context.set.important, context.set.important); + fl_print_format("%r%r %[Commands:%] ", file.stream, f_string_eol_s, f_string_eol_s, context.set.important, context.set.important); fl_print_format("%r %[%r%] Turn on the firewall.", file.stream, f_string_eol_s, context.set.standout, firewall_command_start_s, context.set.standout); fl_print_format("%r %[%r%] Turn off the firewall.", file.stream, f_string_eol_s, context.set.standout, firewall_command_stop_s, context.set.standout); fl_print_format("%r %[%r%] Turn off and then turn on the firewall.", file.stream, f_string_eol_s, context.set.standout, firewall_command_restart_s, context.set.standout);