Changed name from --retry-input' to --retry-prompt'

This commit is contained in:
someordinaryidiot# 2024-09-16 00:46:52 +02:00
parent fed0c919ac
commit 84311908bf

View file

@ -228,7 +228,7 @@ static void usage(int op, const char * const myname)
" use relaxed timeouts for download\n")); " use relaxed timeouts for download\n"));
addlist(_(" --disable-sandbox\n" addlist(_(" --disable-sandbox\n"
" disable the sandbox used for the downloader process\n")); " disable the sandbox used for the downloader process\n"));
addlist(_(" --retry-input repeat prompts until a valid answer is supplied\n")); addlist(_(" --retry-prompt repeat prompts until a valid answer is supplied\n"));
} }
list = alpm_list_msort(list, alpm_list_count(list), options_cmp); list = alpm_list_msort(list, alpm_list_count(list), options_cmp);
for(i = list; i; i = alpm_list_next(i)) { for(i = list; i; i = alpm_list_next(i)) {
@ -986,7 +986,7 @@ static int parseargs(int argc, char *argv[])
{"color", required_argument, 0, OP_COLOR}, {"color", required_argument, 0, OP_COLOR},
{"disable-download-timeout", no_argument, 0, OP_DISABLEDLTIMEOUT}, {"disable-download-timeout", no_argument, 0, OP_DISABLEDLTIMEOUT},
{"disable-sandbox", no_argument, 0, OP_DISABLESANDBOX}, {"disable-sandbox", no_argument, 0, OP_DISABLESANDBOX},
{"retry-input", no_argument, 0, OP_RETRYINPUT}, {"retry-prompt", no_argument, 0, OP_RETRYINPUT},
{0, 0, 0, 0} {0, 0, 0, 0}
}; };