From 3b8e83a8c8f32ca658841f1fae344399a48d66a4 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 17 Dec 2004 04:51:23 +0000 Subject: r4243: a sniff from kukks showed that the ea_set interface in trans2 setfileinfo allows for multiple EAs to be set at once. This fixes all the ea code to allow for that. (This used to be commit b26828bef5d55e5eef0e34a164e76292df45e207) --- source4/include/smb_interfaces.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/include') diff --git a/source4/include/smb_interfaces.h b/source4/include/smb_interfaces.h index 4ba8ea3442..d5e43633db 100644 --- a/source4/include/smb_interfaces.h +++ b/source4/include/smb_interfaces.h @@ -764,7 +764,8 @@ union smb_setfileinfo { enum smb_setfileinfo_level level; union setfileinfo_file file; struct { - struct ea_struct ea; + uint_t num_eas; + struct ea_struct *eas; } in; } ea_set; -- cgit