2 @section @code{fchownat}
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchownat.html}
9 Portability problems fixed by Gnulib:
12 Some platforms fail to detect trailing slash on non-directories, as in
13 @code{fchown(dir,"link-to-file/",uid,gid,flag)}:
16 Some platforms mistakenly dereference symlinks when using
17 @code{AT_SYMLINK_NOFOLLOW}:
20 This function does not fail for an empty filename on some platforms:
21 Linux with glibc < 2.11.
23 This function is missing on some platforms:
24 glibc 2.3.6, MacOS X 10.5, FreeBSD 6.0, NetBSD 5.0, OpenBSD 3.8, AIX
25 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
26 But the replacement function is not safe to be used in libraries and
27 is not multithread-safe. Also, the replacement may fail to change
28 symlinks if @code{lchown} is unsupported, or fail altogether if
29 @code{chown} is unsupported.
32 Portability problems not fixed by Gnulib: