From dd92b5764723d2e00ff85d9eca29fe80695809fc Mon Sep 17 00:00:00 2001 From: dg Date: Wed, 25 Jan 1995 07:31:01 +0000 Subject: Fix bogus format string; fixes problem reported by Wolfram Schneider. --- bin/cp/cp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/cp/cp.c b/bin/cp/cp.c index d8a2c8dc..85cb966 100644 --- a/bin/cp/cp.c +++ b/bin/cp/cp.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cp.c,v 1.2 1994/09/24 02:53:41 davidg Exp $ + * $Id: cp.c,v 1.3 1994/12/30 13:12:12 bde Exp $ */ #ifndef lint @@ -370,7 +370,7 @@ copy(argv, type, fts_options) err(1, "%s", to.p_path); } else if (!S_ISDIR(to_stat.st_mode)) { errno = ENOTDIR; - err(1, "%s: %s", to.p_path); + err(1, "%s", to.p_path); } /* * If not -p and directory didn't exist, set it to be -- cgit v1.1