summaryrefslogtreecommitdiff
path: root/source4/torture
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-06-11 03:35:28 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:17:58 -0500
commit6412e8eeae6b4abfb65514b00c49419a7cb97b1a (patch)
treee8ffb0f97ddb877436c3e52a271b4d35124520e9 /source4/torture
parent182dd02ebe6e5a8e7dab20ae1ef18609b6697d3b (diff)
downloadsamba-6412e8eeae6b4abfb65514b00c49419a7cb97b1a.tar.gz
samba-6412e8eeae6b4abfb65514b00c49419a7cb97b1a.tar.bz2
samba-6412e8eeae6b4abfb65514b00c49419a7cb97b1a.zip
r7482: Rename smbcli_send_tconX() to smbcli_tconX() so as not to get it
confused with an async function. (This used to be commit 340ad67cada15329051c205c5b094ad641718c72)
Diffstat (limited to 'source4/torture')
-rw-r--r--source4/torture/torture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/torture.c b/source4/torture/torture.c
index c3a2f53385..3d1353450d 100644
--- a/source4/torture/torture.c
+++ b/source4/torture/torture.c
@@ -486,7 +486,7 @@ static BOOL run_tcon_test(void)
}
tree1 = cli->tree; /* save old tree connection */
- if (NT_STATUS_IS_ERR(smbcli_send_tconX(cli, share, "?????", password))) {
+ if (NT_STATUS_IS_ERR(smbcli_tconX(cli, share, "?????", password))) {
printf("%s refused 2nd tree connect (%s)\n", host,
smbcli_errstr(cli->tree));
smbcli_shutdown(cli);
@@ -564,7 +564,7 @@ static BOOL tcon_devtest(struct smbcli_state *cli,
BOOL ret;
const char *password = lp_parm_string(-1, "torture", "password");
- status = NT_STATUS_IS_OK(smbcli_send_tconX(cli, myshare, devtype,
+ status = NT_STATUS_IS_OK(smbcli_tconX(cli, myshare, devtype,
password));
printf("Trying share %s with devtype %s\n", myshare, devtype);