1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

vfs: Fix the nfs4acl build on FreeBSD

FreeBSD needs rpc/types.h before rpc/xdr.h

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke
2019-07-31 12:18:42 +02:00
committed by Jeremy Allison
parent d2d4e03b96
commit 42e72f1a30
2 changed files with 6 additions and 0 deletions

View File

@ -32,6 +32,9 @@
#undef FALSE
#endif
#ifdef HAVE_RPC_TYPES_H
#include <rpc/types.h>
#endif
#include <rpc/xdr.h>
#include "nfs4_acls.h"

View File

@ -36,6 +36,9 @@
#undef FALSE
#endif
#ifdef HAVE_RPC_TYPES_H
#include <rpc/types.h>
#endif
#include <rpc/xdr.h>
#include "nfs41acl.h"
#include "nfs4acl_xattr_xdr.h"