Print full path in the error message. It's possible that fts(3)

provides an empty fts_name and reporting the full path is more
appropriate especially with the -R option.

PR:		bin/107515
Submitted by:	bde
Approved by:	trasz (mentor)
MFC after:	1 week
This commit is contained in:
Jaakko Heinonen 2010-01-24 19:17:35 +00:00
parent a70473eec5
commit ba027bbf9a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=202944

View File

@ -508,7 +508,7 @@ traverse(int argc, char *argv[], int options)
break;
case FTS_DNR:
case FTS_ERR:
warnx("%s: %s", p->fts_name, strerror(p->fts_errno));
warnx("%s: %s", p->fts_path, strerror(p->fts_errno));
rval = 1;
break;
case FTS_D: