From a89f496cbf1aff49309b74d4f717d397d95dd30b Mon Sep 17 00:00:00 2001 From: dt Date: Tue, 9 Jun 1998 13:42:51 +0000 Subject: [PATCH] Print correct error message if we copy an unreadable directory. --- bin/cp/cp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/cp/cp.c b/bin/cp/cp.c index ecfaf53191b..bf890111229 100644 --- a/bin/cp/cp.c +++ b/bin/cp/cp.c @@ -45,7 +45,7 @@ static char const copyright[] = static char sccsid[] = "@(#)cp.c 8.2 (Berkeley) 4/1/94"; #endif static const char rcsid[] = - "$Id: cp.c,v 1.15 1998/05/06 06:50:22 charnier Exp $"; + "$Id: cp.c,v 1.16 1998/05/13 07:25:14 charnier Exp $"; #endif /* not lint */ /* @@ -257,6 +257,7 @@ copy(argv, type, fts_options) for (rval = 0; (curr = fts_read(ftsp)) != NULL;) { switch (curr->fts_info) { case FTS_NS: + case FTS_DNR: case FTS_ERR: warnx("%s: %s", curr->fts_path, strerror(curr->fts_errno)); -- 2.45.2