From d336af4180542c9d526dece02d1a27232ef1ca6a Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 6 Dec 2015 20:36:59 -0600 Subject: Rename dirtree->data to dirfd, and don't store symlink length in it. --- toys/posix/find.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix/find.c') diff --git a/toys/posix/find.c b/toys/posix/find.c index 3019cb60..1e748feb 100644 --- a/toys/posix/find.c +++ b/toys/posix/find.c @@ -83,7 +83,7 @@ static int flush_exec(struct dirtree *new, struct exec_range *aa) // switch to directory for -execdir, or back to top if we have an -execdir // _and_ a normal -exec, or are at top of tree in -execdir - if (aa->dir && new->parent) rc = fchdir(new->parent->data); + if (aa->dir && new->parent) rc = fchdir(new->parent->dirfd); else if (TT.topdir != -1) rc = fchdir(TT.topdir); if (rc) { perror_msg("%s", new->name); -- cgit v1.2.3