summaryrefslogtreecommitdiff
path: root/source4/client/smbmount.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-08-18 20:13:08 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:58:09 -0500
commit1129c7808354dc04f7725be505fd23c0bf11a29d (patch)
tree3396a6b9f6833eb9819345fbeea644d250deb448 /source4/client/smbmount.c
parent5f1f1e5e5c52ec8c453b5ea688f87004541cc5bd (diff)
downloadsamba-1129c7808354dc04f7725be505fd23c0bf11a29d.tar.gz
samba-1129c7808354dc04f7725be505fd23c0bf11a29d.tar.bz2
samba-1129c7808354dc04f7725be505fd23c0bf11a29d.zip
r1897: added a choose_called_name() function that allows us to more sanely
handle connections using the IP as the server name, while not trying for NBT name resolution on names like "192" and "192.168.1.2". also removed the ip address argument to smbcli_socket_connect() as it isn't used and doesn't really make sense. (This used to be commit 2ce4028842556328da4da0de9bee942bed02cc62)
Diffstat (limited to 'source4/client/smbmount.c')
-rw-r--r--source4/client/smbmount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/client/smbmount.c b/source4/client/smbmount.c
index 235a45a3f1..795bd50812 100644
--- a/source4/client/smbmount.c
+++ b/source4/client/smbmount.c
@@ -139,7 +139,7 @@ static struct smbcli_state *do_connection(char *the_service)
server_n = server;
make_nmb_name(&calling, my_netbios_name, 0x0);
- make_nmb_name(&called , server, 0x20);
+ choose_called_name(&called, server, 0x20);
again:
zero_ip(&ip);