summaryrefslogtreecommitdiffstats
path: root/source/client/smbmount.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-06-11 03:35:28 +0000
committerTim Potter <tpot@samba.org>2005-06-11 03:35:28 +0000
commit17783eb4d7b8dadaeb515853679c4d108ae67116 (patch)
tree3cc33e308ad89c7742b7bd8fb6a184cbaf8845c9 /source/client/smbmount.c
parentd81f01c55f9e7d824367bfa5579644435cd6d190 (diff)
downloadsamba-17783eb4d7b8dadaeb515853679c4d108ae67116.tar.gz
samba-17783eb4d7b8dadaeb515853679c4d108ae67116.tar.xz
samba-17783eb4d7b8dadaeb515853679c4d108ae67116.zip
r7482: Rename smbcli_send_tconX() to smbcli_tconX() so as not to get it
confused with an async function.
Diffstat (limited to 'source/client/smbmount.c')
-rw-r--r--source/client/smbmount.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/client/smbmount.c b/source/client/smbmount.c
index 7f73807ec6b..7e9c74da573 100644
--- a/source/client/smbmount.c
+++ b/source/client/smbmount.c
@@ -228,8 +228,7 @@ static struct smbcli_state *do_connection(char *the_service)
DEBUG(4,("%d: session setup ok\n", sys_getpid()));
- if (!smbcli_send_tconX(c, share, "?????",
- password, strlen(password)+1)) {
+ if (!smbcli_tconX(c, share, "?????", password, strlen(password)+1)) {
DEBUG(0,("%d: tree connect failed: %s\n",
sys_getpid(), smbcli_errstr(c)));
smbcli_shutdown(c);