diff options
author | Günther Deschner <gd@samba.org> | 2009-07-16 18:37:19 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-07-17 00:13:29 +0200 |
commit | 4faef0da762fc1689ae9a3bc657fc6b5e77beb94 (patch) | |
tree | 4d44bf84b2168362ffce180a357029a56439fb39 /source3/rpc_server | |
parent | 35e45fb841e0c36ec2f8b2a8d7216700cc9af691 (diff) | |
download | samba-4faef0da762fc1689ae9a3bc657fc6b5e77beb94.tar.gz samba-4faef0da762fc1689ae9a3bc657fc6b5e77beb94.tar.xz samba-4faef0da762fc1689ae9a3bc657fc6b5e77beb94.zip |
s3-lsa: Fix pointless check for sec_info flags in _lsa_QuerySecurity().
Guenther
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_lsa_nt.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/source3/rpc_server/srv_lsa_nt.c b/source3/rpc_server/srv_lsa_nt.c index 12437875031..1a6d3bae16e 100644 --- a/source3/rpc_server/srv_lsa_nt.c +++ b/source3/rpc_server/srv_lsa_nt.c @@ -1992,19 +1992,9 @@ NTSTATUS _lsa_QuerySecurity(pipes_struct *p, return status; } - switch (r->in.sec_info) { - case 1: - /* SD contains only the owner */ - if((*r->out.sdbuf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL) - return NT_STATUS_NO_MEMORY; - break; - case 4: - /* SD contains only the ACL */ - if((*r->out.sdbuf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL) - return NT_STATUS_NO_MEMORY; - break; - default: - return NT_STATUS_INVALID_LEVEL; + *r->out.sdbuf = make_sec_desc_buf(p->mem_ctx, sd_size, psd); + if (!*r->out.sdbuf) { + return NT_STATUS_NO_MEMORY; } return status; |