From: Eric Bollengier Date: Fri, 7 Jan 2022 11:00:14 +0000 (+0100) Subject: Tweak run command output to highlight the default choice X-Git-Tag: Beta-15.0.0~691 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08d1378ab993670a3823bf5b5199062d8b338fee;p=thirdparty%2Fbacula.git Tweak run command output to highlight the default choice --- diff --git a/bacula/src/dird/ua_run.c b/bacula/src/dird/ua_run.c index 801c129f5..4d0323f0c 100644 --- a/bacula/src/dird/ua_run.c +++ b/bacula/src/dird/ua_run.c @@ -177,7 +177,7 @@ int run_cmd(UAContext *ua, const char *cmd) break; /* error get out of while loop */ } - if (!get_cmd(ua, _("OK to run? (yes/mod/no): "))) { + if (!get_cmd(ua, _("OK to run? (Yes/mod/no): "))) { break; /* error get out of while loop */ } @@ -1002,7 +1002,7 @@ configure_again: ASSERTD(nb < MAX_INI_ITEMS, "Check if we reach the MAX_INI_ITEMS defined"); - if (!get_cmd(ua, _("Use above plugin configuration? (yes/mod/no): "))) { + if (!get_cmd(ua, _("Use above plugin configuration? (Yes/mod/no): "))) { ini->clear_items(); return 0; }