diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-08-25 07:08:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:45 -0500 |
commit | 0fd98079425cff37c45be824ffa2695458ff12f3 (patch) | |
tree | 6e56cb6f01fcb4242918451a67f63aabeca76693 /source4/rpc_server/dssetup | |
parent | fb36e279e79ae54c1622c316780e20fb9aaf1a85 (diff) | |
download | samba-0fd98079425cff37c45be824ffa2695458ff12f3.tar.gz samba-0fd98079425cff37c45be824ffa2695458ff12f3.tar.bz2 samba-0fd98079425cff37c45be824ffa2695458ff12f3.zip |
r17823: get rid of most of the samdb_base_dn() calls, as they are no longer
needed in searches
(This used to be commit a5ea749f0ac63bf495a55ee8d9d002208ab93572)
Diffstat (limited to 'source4/rpc_server/dssetup')
-rw-r--r-- | source4/rpc_server/dssetup/dcesrv_dssetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/rpc_server/dssetup/dcesrv_dssetup.c b/source4/rpc_server/dssetup/dcesrv_dssetup.c index 9bd8be3223..5d627c60fd 100644 --- a/source4/rpc_server/dssetup/dcesrv_dssetup.c +++ b/source4/rpc_server/dssetup/dcesrv_dssetup.c @@ -88,7 +88,7 @@ static WERROR dssetup_DsRoleGetPrimaryDomainInformation(struct dcesrv_call_state return WERR_SERVER_UNAVAILABLE; } - ret = gendb_search_dn(sam_ctx, mem_ctx, samdb_base_dn(mem_ctx), &res, attrs); + ret = gendb_search_dn(sam_ctx, mem_ctx, NULL, &res, attrs); if (ret != 1) { return WERR_SERVER_UNAVAILABLE; } |