summaryrefslogtreecommitdiff
path: root/libcli/echo
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 /libcli/echo
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 'libcli/echo')
-rw-r--r--libcli/echo/tests/echo.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libcli/echo/tests/echo.c b/libcli/echo/tests/echo.c
index c47b7d0d0f..6424c81001 100644
--- a/libcli/echo/tests/echo.c
+++ b/libcli/echo/tests/echo.c
@@ -64,8 +64,10 @@ static bool torture_echo_udp(struct torture_context *tctx)
make_nbt_name_server(&name,
torture_setting_string(tctx, "host", NULL));
- status = resolve_name(lpcfg_resolve_context(tctx->lp_ctx), &name, tctx,
- &address, tctx->ev);
+ status = resolve_name_ex(lpcfg_resolve_context(tctx->lp_ctx),
+ 0, 0,
+ &name, tctx,
+ &address, tctx->ev);
if (!NT_STATUS_IS_OK(status)) {
printf("Failed to resolve %s - %s\n", name.name,
nt_errstr(status));