svn commit: samba r23914 - in branches/SAMBA_3_2/source/smbd: .

metze at samba.org metze at samba.org
Tue Jul 17 06:03:04 GMT 2007


Author: metze
Date: 2007-07-17 06:03:03 +0000 (Tue, 17 Jul 2007)
New Revision: 23914

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=23914

Log:
try to fix the build on Tru64

/usr/include/sys/acl.h:#define acl_type acl_common.entry_type
was the problem...

metze
Modified:
   branches/SAMBA_3_2/source/smbd/posix_acls.c


Changeset:
Modified: branches/SAMBA_3_2/source/smbd/posix_acls.c
===================================================================
--- branches/SAMBA_3_2/source/smbd/posix_acls.c	2007-07-17 05:55:10 UTC (rev 23913)
+++ branches/SAMBA_3_2/source/smbd/posix_acls.c	2007-07-17 06:03:03 UTC (rev 23914)
@@ -3111,7 +3111,7 @@
 {
 	mode_t perms;
 	SEC_ACCESS acc;
-	int acl_type;
+	int nt_acl_type;
 	DOM_SID trustee;
 
 	switch (ugw) {
@@ -3140,13 +3140,13 @@
 			return NT_STATUS_INVALID_PARAMETER;
 	}
 	acc = map_canon_ace_perms(SNUM(fsp->conn),
-				&acl_type,
+				&nt_acl_type,
 				perms,
 				fsp->is_directory);
 
 	init_sec_ace(se,
 		&trustee,
-		acl_type,
+		nt_acl_type,
 		acc,
 		0);
 	return NT_STATUS_OK;



More information about the samba-cvs mailing list