summaryrefslogtreecommitdiff
path: root/source3/libsmb/clifile.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2013-08-07 16:01:49 -0700
committerStefan Metzmacher <metze@samba.org>2013-08-15 09:07:06 +0200
commit46da267afd540fe2d31f1395cda9e2853cf6432a (patch)
treee690c69ee9d2ab23d67cd3c514487e64b067109c /source3/libsmb/clifile.c
parent179c27dd0235c4949045eef2ffb7a87175a4483b (diff)
downloadsamba-46da267afd540fe2d31f1395cda9e2853cf6432a.tar.gz
samba-46da267afd540fe2d31f1395cda9e2853cf6432a.tar.bz2
samba-46da267afd540fe2d31f1395cda9e2853cf6432a.zip
s3:libsmb: Plumb cli_smb2_mkdir() inside cli_mkdir().
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/libsmb/clifile.c')
-rw-r--r--source3/libsmb/clifile.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/libsmb/clifile.c b/source3/libsmb/clifile.c
index f2e4ac2231..9659fc1a81 100644
--- a/source3/libsmb/clifile.c
+++ b/source3/libsmb/clifile.c
@@ -1525,11 +1525,17 @@ NTSTATUS cli_mkdir_recv(struct tevent_req *req)
NTSTATUS cli_mkdir(struct cli_state *cli, const char *dname)
{
- TALLOC_CTX *frame = talloc_stackframe();
+ TALLOC_CTX *frame = NULL;
struct tevent_context *ev;
struct tevent_req *req;
NTSTATUS status = NT_STATUS_OK;
+ if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
+ return cli_smb2_mkdir(cli, dname);
+ }
+
+ frame = talloc_stackframe();
+
if (smbXcli_conn_has_async_calls(cli->conn)) {
/*
* Can't use sync call while an async call is in flight