From 372c359b211bee62189be3dc0c5830a097ab02f7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 7 Oct 1998 10:27:40 +0000 Subject: fixed facl() bug for solaris (This used to be commit ab5ed686f813c6294ca3eb9b800b3ad41a5a77c3) --- source3/smbwrapper/wrapped.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/smbwrapper') diff --git a/source3/smbwrapper/wrapped.c b/source3/smbwrapper/wrapped.c index adf9156baf..129e9afe84 100644 --- a/source3/smbwrapper/wrapped.c +++ b/source3/smbwrapper/wrapped.c @@ -607,9 +607,9 @@ #endif #ifndef NO_FACL_WRAPPER - int facl(int fd, int cmd, int nentries, aclent_t *aclbufp) + int facl(int fd, int cmd, int nentries, void *aclbufp) { - if (smbw_path(pathp)) { + if (smbw_fd(fd)) { return smbw_facl(fd, cmd, nentries, aclbufp); } -- cgit