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/libcli/raw/clisocket.c | |
parent | 62931369ee5ca2dfcab3d59afac56c55a70d49e7 (diff) | |
download | samba-7261a9b9f76d19e6a2179a48e903e2fee4ee64a1.tar.gz samba-7261a9b9f76d19e6a2179a48e903e2fee4ee64a1.tar.xz 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/libcli/raw/clisocket.c')
-rw-r--r-- | source4/libcli/raw/clisocket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/raw/clisocket.c b/source4/libcli/raw/clisocket.c index 84bf250f6a1..bf608f1ec15 100644 --- a/source4/libcli/raw/clisocket.c +++ b/source4/libcli/raw/clisocket.c @@ -229,7 +229,7 @@ _PUBLIC_ struct smbcli_socket *smbcli_sock_connect_byname(const char *host, cons make_nbt_name(&nbt_name, host, name_type); - status = resolve_name(resolve_ctx, &nbt_name, tmp_ctx, &address, event_ctx); + status = resolve_name_ex(resolve_ctx, 0, 0, &nbt_name, tmp_ctx, &address, event_ctx); if (!NT_STATUS_IS_OK(status)) { talloc_free(tmp_ctx); return NULL; |