[SCM] Samba Shared Repository - branch master updated

Andrew Bartlett abartlet at samba.org
Tue Jun 11 18:53:04 MDT 2013


The branch, master has been updated
       via  3e66cb7 Fix bug #9932 - Currently the maximum number of aces in an SD is limited to 1000, but Microsoft supports around 1800.
      from  e2a08e5 smbd: Remove an unused variable

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 3e66cb7d771e9f2156f4183485736cca7d5609f9
Author: Partha Sarathi <parthasarathi.bl at gmail.com>
Date:   Fri Jun 7 16:30:07 2013 -0700

    Fix bug #9932 - Currently the maximum number of aces in an SD is limited to 1000, but Microsoft supports around 1800.
    
    Issue description: I was trying to add maximum number of aces on Microsoft
    share, where I was able to add nearly 1800 aces on a file/folder SD. But Samba
    does not support adding 1800 aces to SD instead it limited to 1000.
    
    Expected behavior: Ideally SAMBA should also support as like Windows to compare
    with Windows standard. Set to 2000 until we add EA limits in the server.
    
    Reviewed-by: Jeremy Allison <jra at samba.org>
    
    Autobuild-User(master): Andrew Bartlett <abartlet at samba.org>
    Autobuild-Date(master): Wed Jun 12 02:52:36 CEST 2013 on sn-devel-104

-----------------------------------------------------------------------

Summary of changes:
 librpc/idl/security.idl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl
index d4324ab..00bb6e6 100644
--- a/librpc/idl/security.idl
+++ b/librpc/idl/security.idl
@@ -536,7 +536,7 @@ interface security
 	typedef [public,gensize,nosize] struct {
 		security_acl_revision revision;
 		[value(ndr_size_security_acl(r,ndr->flags))] uint16 size;
-		[range(0,1000)] uint32 num_aces;
+		[range(0,2000)] uint32 num_aces;
 		security_ace aces[num_aces];
 	} security_acl;
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list