diff options
author | Volker Lendecke <vl@samba.org> | 2010-06-03 16:09:31 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-06-03 16:10:47 +0200 |
commit | 12d1a3b0a5367b4f920d32e6cb1fcdc2f7d17513 (patch) | |
tree | fd7b47aaa1edfdce835fae30fe0f1403eb071f87 | |
parent | 8131e9f29059c6ad7428405f9a995ee1bef2e72b (diff) | |
download | samba-12d1a3b0a5367b4f920d32e6cb1fcdc2f7d17513.tar.gz samba-12d1a3b0a5367b4f920d32e6cb1fcdc2f7d17513.tar.bz2 samba-12d1a3b0a5367b4f920d32e6cb1fcdc2f7d17513.zip |
s3: Fix the build of the nfsv4 acl code
-rw-r--r-- | source3/modules/nfs4_acls.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/modules/nfs4_acls.c b/source3/modules/nfs4_acls.c index 83e8f38ae8..36a3057e66 100644 --- a/source3/modules/nfs4_acls.c +++ b/source3/modules/nfs4_acls.c @@ -19,6 +19,7 @@ #include "includes.h" #include "nfs4_acls.h" +#include "librpc/gen_ndr/ndr_security.h" #undef DBGC_CLASS #define DBGC_CLASS DBGC_ACLS @@ -331,7 +332,7 @@ static NTSTATUS smb_get_nt_acl_nfs4_common(const SMB_STRUCT_STAT *sbuf, } DEBUG(10, ("smb_get_nt_acl_nfs4_common successfully exited with sd_size %d\n", - (int)ndr_size_security_descriptor(*ppdesc, NULL, 0))); + (int)ndr_size_security_descriptor(*ppdesc, 0))); return NT_STATUS_OK; } |