summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c
index 59d32e820..111449966 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)