chiark / gitweb /
Merge pull request #16 from Gottox/fix-musl-228.3
authorSven Eden <yamakuzure@gmx.net>
Wed, 24 May 2017 11:50:55 +0000 (13:50 +0200)
committerGitHub <noreply@github.com>
Wed, 24 May 2017 11:50:55 +0000 (13:50 +0200)
musl-fix for 228.3

src/basic/fs-util.h

index 294d617cd761d9e2f81e8444d558347e80685339..2000b38a96738230e43df68dca4c802750ee8117 100644 (file)
@@ -51,7 +51,12 @@ int fchmod_umask(int fd, mode_t mode);
 
 int fd_warn_permissions(const char *path, int fd);
 
+#ifdef __GLIBC__
 #define laccess(path, mode) faccessat(AT_FDCWD, (path), (mode), AT_SYMLINK_NOFOLLOW)
+#else
+#define laccess(path, mode) faccessat(AT_FDCWD, (path), (mode), 0)
+#endif
+
 
 int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode);
 int touch(const char *path);