From 207939fcdd70de096f48750e72d41d7f1a66a9cd Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 6 Oct 1997 13:07:14 +0000 Subject: [PATCH] (make_path): Print verbose message using fprintf, not error. --- lib/makepath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/makepath.c b/lib/makepath.c index 8ac46fe466..7631c48329 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) -- 2.30.2