From f624a73bbc1ce6edb370f783ab2bf5be42901fb5 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 24 Jul 2020 09:45:47 -0700 Subject: [PATCH] Change the --mkpath message. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = '/'; } -- 2.47.2