From: Kevin Day Date: Sun, 11 Feb 2024 03:04:44 +0000 (-0600) Subject: Bugfix: Error message is saying "lock" when it should say "stop". X-Git-Tag: 0.6.9~31 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=abc2c36bd8e31cb6d6bfd2894089c306a0e06747;p=fll Bugfix: Error message is saying "lock" when it should say "stop". --- 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);