diff options
Diffstat (limited to 'rpc/xdr/src/acl3-xdr.x')
| -rw-r--r-- | rpc/xdr/src/acl3-xdr.x | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/rpc/xdr/src/acl3-xdr.x b/rpc/xdr/src/acl3-xdr.x index 8ca6e84b525..7f7364971e6 100644 --- a/rpc/xdr/src/acl3-xdr.x +++ b/rpc/xdr/src/acl3-xdr.x @@ -8,6 +8,11 @@ * cases as published by the Free Software Foundation. */ +#ifdef RPC_XDR +%#include "rpc-pragmas.h" +#endif +%#include <glusterfs/compat.h> +%#include "xdr-nfs3.h" struct aclentry { int type; @@ -23,25 +28,25 @@ struct getaclargs { struct getaclreply { int status; int attr_follows; - struct fattr3 attr; + fattr3 attr; int mask; int aclcount; - struct aclentry aclentry<>; + aclentry aclentry<>; int daclcount; - struct aclentry daclentry<>; + aclentry daclentry<>; }; struct setaclargs { netobj fh; int mask; int aclcount; - struct aclentry aclentry<>; + aclentry aclentry<>; int daclcount; - struct aclentry daclentry<>; + aclentry daclentry<>; }; struct setaclreply { int status; int attr_follows; - struct fattr3 attr; + fattr3 attr; }; |
