The Samba-Bugzilla – Attachment 8949 Details for
Bug 9932
Currently the maximum number of aces in an SD is limited to 1000, but Microsoft supports around 1800
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
git-am fix for master and 4.0.x
0001-Fix-bug-9932-Currently-the-maximum-number-of-aces-in.patch (text/plain), 1.19 KB, created by
Jeremy Allison
on 2013-06-07 23:32:41 UTC
(
hide
)
Description:
git-am fix for master and 4.0.x
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2013-06-07 23:32:41 UTC
Size:
1.19 KB
patch
obsolete
>From 2db9fca6a377bb1bca2912978177ab377cdebb43 Mon Sep 17 00:00:00 2001 >From: Partha Sarathi <parthasarathi.bl@gmail.com> >Date: Fri, 7 Jun 2013 16:30:07 -0700 >Subject: [PATCH] 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. > >Reviewed-by: Jeremy Allison <jra@samba.org> >--- > librpc/idl/security.idl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl >index d4324ab..49c2313 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,1800)] uint32 num_aces; > security_ace aces[num_aces]; > } security_acl; > >-- >1.7.9.5 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
jra
:
review?
(
rsharpe
)
Actions:
View
Attachments on
bug 9932
:
8947
| 8949