From: Ulrich Drepper Date: Mon, 27 Feb 2006 21:38:55 +0000 (+0000) Subject: (AT_SYMLINK_FOLLOW): Define. X-Git-Tag: cvs/fedora-glibc-20060301T0647~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c804fb5f4e31447ff601bce0ccef996d7efa2552;p=thirdparty%2Fglibc.git (AT_SYMLINK_FOLLOW): Define. --- diff --git a/io/fcntl.h b/io/fcntl.h index e50afbbfd12..72a944b3d45 100644 --- a/io/fcntl.h +++ b/io/fcntl.h @@ -58,11 +58,12 @@ __BEGIN_DECLS #ifdef __USE_ATFILE # define AT_FDCWD -100 /* Special value used to indicate - openat should use the current - working directory. */ + the *at functions should use the + current working directory. */ # define AT_SYMLINK_NOFOLLOW 0x100 /* Do not follow symbolic links. */ # define AT_REMOVEDIR 0x200 /* Remove directory instead of unlinking file. */ +# define AT_SYMLINK_FOLLOW 0x400 /* Follow symbolic links. */ # define AT_EACCESS 0x200 /* Test access permitted for effective IDs, not real IDs. */ #endif