diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-05-04 11:51:56 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-05-04 11:55:07 -0400 |
commit | d40691e31e2674d7d95ec9160b9897805ce3f43b (patch) | |
tree | 7b2a6c031a2808e7bc9c94e60c708595e3d7e7a8 /bftw.h | |
parent | d61c4ed8551e5ef5642f93acec0b5c3f84ebede9 (diff) | |
download | bfs-d40691e31e2674d7d95ec9160b9897805ce3f43b.tar.xz |
stat: Unify the flags arguments
Diffstat (limited to 'bftw.h')
-rw-r--r-- | bftw.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -96,10 +96,10 @@ struct BFTW { /** A parent file descriptor for the *at() family of calls. */ int at_fd; - /** The path relative to atfd for the *at() family of calls. */ + /** The path relative to at_fd for the *at() family of calls. */ const char *at_path; - /** Appropriate flags (such as AT_SYMLINK_NOFOLLOW) for the *at() family of calls. */ - int at_flags; + /** Flags for bfs_stat(). */ + enum bfs_stat_flag stat_flags; }; /** |