diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-05-02 16:36:48 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-05-03 07:37:07 +0200 |
commit | 7261a9b9f76d19e6a2179a48e903e2fee4ee64a1 (patch) | |
tree | 3d45a1652b32f830b2dd4c5fef59401c3a5a380a /source4/torture/ldap | |
parent | 62931369ee5ca2dfcab3d59afac56c55a70d49e7 (diff) | |
download | samba-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/ldap')
-rw-r--r-- | source4/torture/ldap/cldapbench.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/torture/ldap/cldapbench.c b/source4/torture/ldap/cldapbench.c index 5c7e56f40b..7d02a2580b 100644 --- a/source4/torture/ldap/cldapbench.c +++ b/source4/torture/ldap/cldapbench.c @@ -215,7 +215,8 @@ bool torture_bench_cldap(struct torture_context *torture) make_nbt_name_server(&name, torture_setting_string(torture, "host", NULL)); /* do an initial name resolution to find its IP */ - status = resolve_name(lpcfg_resolve_context(torture->lp_ctx), &name, torture, &address, torture->ev); + status = resolve_name_ex(lpcfg_resolve_context(torture->lp_ctx), + 0, 0, &name, torture, &address, torture->ev); if (!NT_STATUS_IS_OK(status)) { printf("Failed to resolve %s - %s\n", name.name, nt_errstr(status)); |