From 7261a9b9f76d19e6a2179a48e903e2fee4ee64a1 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 2 May 2011 16:36:48 +1000 Subject: 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 --- libcli/echo/tests/echo.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libcli/echo/tests') 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)); -- cgit