diff options
Diffstat (limited to 'toys/pending/mdev.c')
-rw-r--r-- | toys/pending/mdev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toys/pending/mdev.c b/toys/pending/mdev.c index 0493f1a5..d0bb0681 100644 --- a/toys/pending/mdev.c +++ b/toys/pending/mdev.c @@ -280,7 +280,8 @@ static int callback(struct dirtree *node) // Circa 2.6.25 the entries more than 2 deep are all either redundant // (mouse#, event#) or unnamed (every usb_* entry is called "device"). - return (node->parent && node->parent->parent) ? 0 : DIRTREE_RECURSE; + if (node->parent && node->parent->parent) return 0; + return DIRTREE_RECURSE|DIRTREE_SYMFOLLOW; } void mdev_main(void) |