1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

fixed facl() bug for solaris

(This used to be commit ab5ed686f813c6294ca3eb9b800b3ad41a5a77c3)
This commit is contained in:
Andrew Tridgell 1998-10-07 10:27:40 +00:00
parent 98af8adff1
commit 372c359b21

View File

@ -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);
}