summaryrefslogtreecommitdiff
path: root/source4/torture/drs
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-05-02 16:36:48 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-05-03 07:37:07 +0200
commit7261a9b9f76d19e6a2179a48e903e2fee4ee64a1 (patch)
tree3d45a1652b32f830b2dd4c5fef59401c3a5a380a /source4/torture/drs
parent62931369ee5ca2dfcab3d59afac56c55a70d49e7 (diff)
downloadsamba-7261a9b9f76d19e6a2179a48e903e2fee4ee64a1.tar.gz
samba-7261a9b9f76d19e6a2179a48e903e2fee4ee64a1.tar.bz2
samba-7261a9b9f76d19e6a2179a48e903e2fee4ee64a1.zip
s4-libcli Remove resolve_name() as it conflicts with Samba3.
This was just a wrapper around resolve_name_ex(), so just call that instead. Andrew Bartlett
Diffstat (limited to 'source4/torture/drs')
-rw-r--r--source4/torture/drs/rpc/dssync.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/torture/drs/rpc/dssync.c b/source4/torture/drs/rpc/dssync.c
index 2ec3ded287..733e55ded5 100644
--- a/source4/torture/drs/rpc/dssync.c
+++ b/source4/torture/drs/rpc/dssync.c
@@ -105,8 +105,9 @@ static struct DsSyncTest *test_create_context(struct torture_context *tctx)
make_nbt_name_server(&name, ctx->drsuapi_binding->host);
/* do an initial name resolution to find its IP */
- status = resolve_name(lpcfg_resolve_context(tctx->lp_ctx), &name, tctx,
- &ctx->dest_address, tctx->ev);
+ status = resolve_name_ex(lpcfg_resolve_context(tctx->lp_ctx),
+ 0, 0, &name, tctx,
+ &ctx->dest_address, tctx->ev);
if (!NT_STATUS_IS_OK(status)) {
printf("Failed to resolve %s - %s\n",
name.name, nt_errstr(status));