From 0698ea9aeb4044d615dc0ff2c6da24cea1bcc98e Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 5 Feb 2023 19:46:45 -0800 Subject: [PATCH] Fix flist string comparison issue in tr_TR.utf-8 locale. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index c9c82527..097d7f31 100644 --- a/options.c +++ b/options.c @@ -2340,7 +2340,7 @@ int parse_arguments(int *argc_p, const char ***argv_p) if (do_progress && !am_server) { if (!log_before_transfer && INFO_EQ(NAME, 0)) parse_output_words(info_words, info_levels, "name", DEFAULT_PRIORITY); - parse_output_words(info_words, info_levels, "flist2,progress", DEFAULT_PRIORITY); + parse_output_words(info_words, info_levels, "FLIST2,PROGRESS", DEFAULT_PRIORITY); } if (dry_run) -- 2.11.4.GIT