From 5be1c0ff22b55887b4d82c2cbbff79d9b5f45791 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 4 Sep 2019 15:53:41 -0500 Subject: DIRTREE_STATLESS doesn't have to test 3 stat fields, it sets a flag --- toys/posix/ls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix/ls.c') diff --git a/toys/posix/ls.c b/toys/posix/ls.c index 4ae352af..65031587 100644 --- a/toys/posix/ls.c +++ b/toys/posix/ls.c @@ -585,7 +585,7 @@ void ls_main(void) // note: double_list->prev temporarily goes in dirtree->parent if (dt) { - if (!dt->st.st_blksize && !dt->st.st_dev && !dt->st.st_ino) { + if (dt->again&2) { perror_msg_raw(*s); free(dt); } else dlist_add_nomalloc((void *)&TT.files->child, (void *)dt); -- cgit v1.2.3