From b7c6e71b26b913fda0a4ba4a99eb7ea35657a104 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 31 Mar 2005 00:36:22 +0000 Subject: r6141: Fix OS/2 EA's for NTcreate. OpenX and mkdir to follow. Jeremy. (This used to be commit 106f91ff65acd23a7dda4d0ec89ae41ecb28153e) --- source3/include/smb.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source3/include/smb.h') diff --git a/source3/include/smb.h b/source3/include/smb.h index dc0f5cf83a..f64a30ae2f 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1718,6 +1718,11 @@ struct ea_struct { DATA_BLOB value; }; +struct ea_list { + struct ea_list *next, *prev; + struct ea_struct ea; +}; + /* EA names used internally in Samba. KEEP UP TO DATE with prohibited_ea_names in trans2.c !. */ #define SAMBA_POSIX_INHERITANCE_EA_NAME "user.SAMBA_PAI" /* EA to use for DOS attributes */ -- cgit