From 12d1a3b0a5367b4f920d32e6cb1fcdc2f7d17513 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 3 Jun 2010 16:09:31 +0200 Subject: [PATCH] s3: Fix the build of the nfsv4 acl code --- source3/modules/nfs4_acls.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/modules/nfs4_acls.c b/source3/modules/nfs4_acls.c index 83e8f38ae8b..36a3057e669 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; } -- 2.34.1