diff options
author | 2016-06-28 15:20:13 +0000 | |
---|---|---|
committer | 2016-06-28 15:20:13 +0000 | |
commit | e6bef808e1c40a1b684b81c82117c9f9ca9c2a17 (patch) | |
tree | 319d5ed50352bbea418e4c462190714d0192eba8 | |
parent | introduce rwlock for socketbuf instead of the old flag and tsleep dance. (diff) | |
download | wireguard-openbsd-e6bef808e1c40a1b684b81c82117c9f9ca9c2a17.tar.xz wireguard-openbsd-e6bef808e1c40a1b684b81c82117c9f9ca9c2a17.zip |
don't report errors for 'rm -rf ""'. report by rkitover.
ok benno deraadt
-rw-r--r-- | bin/rm/rm.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/bin/rm/rm.c b/bin/rm/rm.c index 2f919ffad9c..70476c87276 100644 --- a/bin/rm/rm.c +++ b/bin/rm/rm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rm.c,v 1.37 2016/04/15 23:09:57 tedu Exp $ */ +/* $OpenBSD: rm.c,v 1.38 2016/06/28 15:20:13 tedu Exp $ */ /* $NetBSD: rm.c,v 1.19 1995/09/07 06:48:50 jtc Exp $ */ /*- @@ -150,8 +150,11 @@ rm_tree(char **argv) flags = FTS_PHYSICAL; if (!needstat) flags |= FTS_NOSTAT; - if (!(fts = fts_open(argv, flags, NULL))) - err(1, NULL); + if (!(fts = fts_open(argv, flags, NULL))) { + if (!fflag || errno != ENOENT) + err(1, NULL); + return; + } while ((p = fts_read(fts)) != NULL) { switch (p->fts_info) { case FTS_DNR: |