|
Message-ID: <20140614041951.GF179@brightrain.aerifal.cx> Date: Sat, 14 Jun 2014 00:19:51 -0400 From: Rich Felker <dalias@...c.org> To: musl@...ts.openwall.com Subject: Re: [PATCH] fix fanotify_mark On Fri, Jun 13, 2014 at 06:27:56PM +0200, Clément Vasseur wrote: > --- > src/linux/fanotify.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/linux/fanotify.c b/src/linux/fanotify.c > index 1f4ef93..c6211af 100644 > --- a/src/linux/fanotify.c > +++ b/src/linux/fanotify.c > @@ -9,6 +9,6 @@ int fanotify_init(unsigned flags, unsigned event_f_flags) > int fanotify_mark(int fanotify_fd, unsigned flags, unsigned long long mask, > int dfd, const char *pathname) > { > - return syscall(SYS_fanotify_mark, flags, __SYSCALL_LL_O(mask), dfd, pathname); > + return syscall(SYS_fanotify_mark, fanotify_fd, flags, __SYSCALL_LL_E(mask), dfd, pathname); > } > > -- > 1.9.2 Thanks. Committed. Rich
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.