1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s3:torture: use cli_tree_connect() instead of smb2cli_tcon()

metze
This commit is contained in:
Stefan Metzmacher 2011-11-24 13:03:11 +01:00
parent 694b7d6f77
commit a312a8c788

View File

@ -61,9 +61,9 @@ bool run_smb2_basic(int dummy)
return false;
}
status = smb2cli_tcon(cli, share);
status = cli_tree_connect(cli, share, "?????", "", 0);
if (!NT_STATUS_IS_OK(status)) {
printf("smb2cli_tcon returned %s\n", nt_errstr(status));
printf("cli_tree_connect returned %s\n", nt_errstr(status));
return false;
}