summaryrefslogtreecommitdiff
path: root/source3/utils/net_rpc_join.c
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/utils/net_rpc_join.c
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/utils/net_rpc_join.c')
-rw-r--r--source3/utils/net_rpc_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_join.c b/source3/utils/net_rpc_join.c
index 7f3515ce75..1fec140124 100644
--- a/source3/utils/net_rpc_join.c
+++ b/source3/utils/net_rpc_join.c
@@ -244,7 +244,7 @@ int net_rpc_join_newstyle(struct net_context *c, int argc, const char **argv)
CHECK_RPC_ERR(rpccli_samr_Connect2(pipe_hnd, mem_ctx,
pipe_hnd->desthost,
SAMR_ACCESS_ENUM_DOMAINS
- | SAMR_ACCESS_OPEN_DOMAIN,
+ | SAMR_ACCESS_LOOKUP_DOMAIN,
&sam_pol),
"could not connect to SAM database");