From: Jim Meyering Date: Mon, 6 Oct 1997 13:30:14 +0000 (+0000) Subject: change verbose messages X-Git-Tag: TEXTUTILS-1_22c~294 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5549867e260f95cfe94af0bd9c4a656670f3f69;p=thirdparty%2Fcoreutils.git change verbose messages --- diff --git a/src/install.c b/src/install.c index 59d32e8209..1114499664 100644 --- a/src/install.c +++ b/src/install.c @@ -302,7 +302,7 @@ main (int argc, char **argv) { errors |= make_path (argv[optind], mode, mode, owner_id, group_id, 0, - (verbose ? "%s" : NULL)); + (verbose ? "creating directory `%s'" : NULL)); } } else @@ -445,7 +445,7 @@ copy_file (const char *from, const char *to, int *to_created) /* Now it's the time to give some feedback if requested. */ if (verbose) - printf ("%s -> %s\n", from, to); + printf ("copying `%s' to `%s'\n", from, to); fromfd = open (from, O_RDONLY, 0); if (fromfd == -1)