summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/rm/rm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/rm/rm.c b/bin/rm/rm.c
index 3f0da23..7467748 100644
--- a/bin/rm/rm.c
+++ b/bin/rm/rm.c
@@ -235,7 +235,8 @@ rm_tree(argv)
switch (p->fts_info) {
case FTS_DP:
case FTS_DNR:
- if ((e=rmdir(p->fts_accpath)) || (fflag && errno == ENOENT)) {
+ if ((e=rmdir(p->fts_accpath)) == 0 ||
+ (fflag && errno == ENOENT)) {
if (e == 0 && vflag)
(void)printf("%s\n", p->fts_accpath);
continue;
OpenPOWER on IntegriCloud