summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWayne Davison <wayne@opencoder.net>2023-02-05 19:46:45 -0800
committerWayne Davison <wayne@opencoder.net>2023-02-05 19:46:45 -0800
commit0698ea9aeb4044d615dc0ff2c6da24cea1bcc98e (patch)
treecfbebac678c04d303d0bb08f040725fa5cf7a1df
parent90df93e446f9ebbfd4ce97d6755c5fe1f45f9fd0 (diff)
downloadrsync-0698ea9aeb4044d615dc0ff2c6da24cea1bcc98e.tar.gz
Fix flist string comparison issue in tr_TR.utf-8 locale.
-rw-r--r--options.c2
1 files changed, 1 insertions, 1 deletions
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)