diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-18 05:20:54 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-18 05:20:54 +0000 |
commit | 06d0f61aa43c0ab08dc122c9a3b41f9fc453fcbc (patch) | |
tree | da7f6056f77d9722ee287e891d5fdfa97f401575 /source4/librpc/ndr/ndr_samr.h | |
parent | 9b7b5e5c516155d9606cc92bd22a958a8435ef48 (diff) | |
download | samba-06d0f61aa43c0ab08dc122c9a3b41f9fc453fcbc.tar.gz samba-06d0f61aa43c0ab08dc122c9a3b41f9fc453fcbc.tar.bz2 samba-06d0f61aa43c0ab08dc122c9a3b41f9fc453fcbc.zip |
added samr_QuerySecurity() call that displays the ACL for any handle.
(This used to be commit 5bbeaaa3d13c838d014e7689b0fcf7374c8c7f57)
Diffstat (limited to 'source4/librpc/ndr/ndr_samr.h')
-rw-r--r-- | source4/librpc/ndr/ndr_samr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/librpc/ndr/ndr_samr.h b/source4/librpc/ndr/ndr_samr.h index ed32d3d9f4..2542396341 100644 --- a/source4/librpc/ndr/ndr_samr.h +++ b/source4/librpc/ndr/ndr_samr.h @@ -111,9 +111,13 @@ struct samr_SetSecurity { struct samr_QuerySecurity { struct { + struct policy_handle *handle; + uint32 sec_info; } in; struct { + uint32 *length; + struct security_descriptor *sd; NTSTATUS result; } out; |