diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-08-22 18:34:36 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-08-22 18:37:23 -0400 |
commit | d548b86e120db7e1327eea957a698d4bb874a1fb (patch) | |
tree | 874e34926ee12fbbf076a834d6822ab751cf378b /util.h | |
parent | 2a561b66f48ab4deafb0a031cad3ad541ea79449 (diff) | |
download | bfs-d548b86e120db7e1327eea957a698d4bb874a1fb.tar.xz |
Avoid multiple extra stat()s of broken symlinks for -xtype
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -152,10 +152,10 @@ const char *xbasename(const char *path); * @param buf * The stat buffer to fill. * @param flags - * AT_* flags for this call. Will be updated if a fallback happens. + * AT_* flags for this call. * @return 0 on success, -1 on failure. */ -int xfstatat(int fd, const char *path, struct stat *buf, int *flags); +int xfstatat(int fd, const char *path, struct stat *buf, int flags); /** * Convert a stat() st_mode to a bftw() typeflag. |