From abc2c36bd8e31cb6d6bfd2894089c306a0e06747 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 10 Feb 2024 21:04:44 -0600 Subject: [PATCH] Bugfix: Error message is saying "lock" when it should say "stop". --- level_3/firewall/c/firewall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_3/firewall/c/firewall.c b/level_3/firewall/c/firewall.c index 9cf6efa..7ce96cf 100644 --- a/level_3/firewall/c/firewall.c +++ b/level_3/firewall/c/firewall.c @@ -521,7 +521,7 @@ extern "C" { } else { if (main->error.verbosity != f_console_verbosity_quiet_e) { - fll_print_format("%r%[%QFailed to perform stop request because the lock instructions are missing from: %r.%]%r", main->error.to.stream, f_string_eol_s, main->error.context, main->error.prefix, path_file_other, main->error.context, f_string_eol_s); + fll_print_format("%r%[%QFailed to perform stop request because the stop instructions are missing from: %r.%]%r", main->error.to.stream, f_string_eol_s, main->error.context, main->error.prefix, path_file_other, main->error.context, f_string_eol_s); } firewall_delete_local_data(&local); -- 1.8.3.1