1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-24 13:57:43 +03:00

fixed facl() bug for solaris

This commit is contained in:
Andrew Tridgell -
parent 15aa1b52cd
commit ab5ed686f8

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