summaryrefslogtreecommitdiff
path: root/source3/libnet
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-04-15 15:40:00 -0700
committerJeremy Allison <jra@samba.org>2009-04-15 15:40:00 -0700
commitd9804ae3cc2c435f9983ca47f6f1b6b96e5c03ca (patch)
tree618057dc77d62fec5fff32263dd90a5011cad793 /source3/libnet
parente6aa3f2d09bd004341dde28b15ef769a09401f26 (diff)
downloadsamba-d9804ae3cc2c435f9983ca47f6f1b6b96e5c03ca.tar.gz
samba-d9804ae3cc2c435f9983ca47f6f1b6b96e5c03ca.tar.bz2
samba-d9804ae3cc2c435f9983ca47f6f1b6b96e5c03ca.zip
Fix bug #6089 - Winbind samr_OpenDomain not possible with Samba 3.2.6+
What a difference a name makes... :-). Just because something is missnamed SAMR_ACCESS_OPEN_DOMAIN, when it should actually be SAMR_ACCESS_LOOKUP_DOMAIN, don't automatically use it for a security check in _samr_OpenDomain(). Jeremy.
Diffstat (limited to 'source3/libnet')
-rw-r--r--source3/libnet/libnet_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libnet/libnet_join.c b/source3/libnet/libnet_join.c
index fe9fd66fdc..6b0604bb9f 100644
--- a/source3/libnet/libnet_join.c
+++ b/source3/libnet/libnet_join.c
@@ -785,7 +785,7 @@ static NTSTATUS libnet_join_joindomain_rpc(TALLOC_CTX *mem_ctx,
status = rpccli_samr_Connect2(pipe_hnd, mem_ctx,
pipe_hnd->desthost,
SAMR_ACCESS_ENUM_DOMAINS
- | SAMR_ACCESS_OPEN_DOMAIN,
+ | SAMR_ACCESS_LOOKUP_DOMAIN,
&sam_pol);
if (!NT_STATUS_IS_OK(status)) {
goto done;