From: Wayne Davison Date: Fri, 24 Jul 2020 16:45:47 +0000 (-0700) Subject: Change the --mkpath message. X-Git-Tag: v3.2.3pre1~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f624a73bbc1ce6edb370f783ab2bf5be42901fb5;p=thirdparty%2Frsync.git Change the --mkpath message. --- diff --git a/main.c b/main.c index 1130e24c..04b32e74 100644 --- a/main.c +++ b/main.c @@ -722,7 +722,7 @@ static char *get_local_name(struct file_list *flist, char *dest_path) if (INFO_GTE(NAME, 1)) { if (file_total == 1 || trailing_slash) *cp = '\0'; - rprintf(FINFO, "created %s %s\n", ret == 1 ? "directory" : "path", dest_path); + rprintf(FINFO, "created %d director%s for %s\n", ret, ret == 1 ? "y" : "ies", dest_path); if (file_total == 1 || trailing_slash) *cp = '/'; }