From 382057f588fbf2c2f7950b85dd317721b8d04c07 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 21 Nov 2016 16:47:23 -0600 Subject: Have dirtree_notdotdot() pass through !node->parent so . and .. on the command line aren't filtered out. Audited all the callers and removed redundant calls, adjusted call sequence, etc. (And let rm _not_ do this, because posix.) --- toys/pending/diff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/pending/diff.c') diff --git a/toys/pending/diff.c b/toys/pending/diff.c index 53bdbce3..b2177c4f 100644 --- a/toys/pending/diff.c +++ b/toys/pending/diff.c @@ -484,7 +484,7 @@ static int list_dir (struct dirtree *node) { int ret = 0; - if (node->parent && !dirtree_notdotdot(node)) return 0; + if (!dirtree_notdotdot(node)) return 0; if (S_ISDIR(node->st.st_mode) && !node->parent) { //add root dirs. add_to_list(node); -- cgit v1.2.3