summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-10-06 13:07:14 +0000
committerJim Meyering <jim@meyering.net>1997-10-06 13:07:14 +0000
commit40fa6cc69988f44a086c4fb21d6d8b05a2e154ad (patch)
treef52542b118683a1c7285d7af4e9b8548460ab2f6 /lib
parent7a4cc2dff1bd63de722ec9735275c45858d1137a (diff)
downloadcoreutils-40fa6cc69988f44a086c4fb21d6d8b05a2e154ad.tar.xz
(make_path): Print verbose message using fprintf, not error.
Diffstat (limited to 'lib')
-rw-r--r--lib/makepath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/makepath.c b/lib/makepath.c
index 8ac46fe46..7631c4832 100644
--- a/lib/makepath.c
+++ b/lib/makepath.c
@@ -243,7 +243,7 @@ make_path (argpath, mode, parent_mode, owner, group, preserve_existing,
}
if (newly_created_dir && verbose_fmt_string != NULL)
- error (0, 0, verbose_fmt_string, dirpath);
+ fprintf (stderr, verbose_fmt_string, dirpath);
if (owner != (uid_t) -1 && group != (gid_t) -1
&& chown (basename_dir, owner, group)