summaryrefslogtreecommitdiff
path: root/source3/client
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2010-08-20 15:57:08 -0700
committerJeremy Allison <jra@samba.org>2010-08-20 15:57:08 -0700
commitaf081ec4a101aa5d0babfd913e40f5f8ed1b0fe9 (patch)
tree25d38c721adf465e3eb6847918bfc2226fd2a5ed /source3/client
parent22a0168504846d618f70bb79175950f37f341769 (diff)
downloadsamba-af081ec4a101aa5d0babfd913e40f5f8ed1b0fe9.tar.gz
samba-af081ec4a101aa5d0babfd913e40f5f8ed1b0fe9.tar.bz2
samba-af081ec4a101aa5d0babfd913e40f5f8ed1b0fe9.zip
Fix bug 7627 - smbclient ignores "-I" when used with "-L", fails name resolution.
Still needs some more work to fix missing netbios name issues, but fixes underlying issue of IP address being ignored. Jeremy.
Diffstat (limited to 'source3/client')
-rw-r--r--source3/client/client.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index ce5b4e6323..0ce446115f 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -4687,7 +4687,7 @@ static int process(const char *base_directory)
static int do_host_query(const char *query_host)
{
cli = cli_cm_open(talloc_tos(), NULL,
- query_host, "IPC$", auth_info, true, smb_encrypt,
+ have_ip ? dest_ss_str : query_host, "IPC$", auth_info, true, smb_encrypt,
max_protocol, port, name_type);
if (!cli)
return 1;
@@ -4713,7 +4713,8 @@ static int do_host_query(const char *query_host)
cli_shutdown(cli);
cli = cli_cm_open(talloc_tos(), NULL,
- query_host, "IPC$", auth_info, true, smb_encrypt,
+ have_ip ? dest_ss_str : query_host, "IPC$",
+ auth_info, true, smb_encrypt,
max_protocol, 139, name_type);
}