summaryrefslogtreecommitdiffstats
path: root/source/client
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2004-06-08 16:14:31 +0000
committerJeremy Allison <jra@samba.org>2004-06-08 16:14:31 +0000
commitbef0b93385376a32132ca3503959afe95d89d5ac (patch)
treec00557a2daef766ae94f3da62cfc649a8b9f4a03 /source/client
parentaa91b0afc3d75be1a7b63d2ed5ba94397a6f01e1 (diff)
downloadsamba-bef0b93385376a32132ca3503959afe95d89d5ac.tar.gz
samba-bef0b93385376a32132ca3503959afe95d89d5ac.tar.xz
samba-bef0b93385376a32132ca3503959afe95d89d5ac.zip
r1085: Now it's had some proper user testing, merge in the deferred open fix. I'm
still doing more testing, but it fixes a behaviour that we've been wrong on ever since the start of Samba. Jeremy.
Diffstat (limited to 'source/client')
-rw-r--r--source/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c
index a0470315f82..63d73c2d4cf 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -1571,7 +1571,7 @@ static int cmd_open(void)
}
pstrcat(mask,buf);
- cli_open(cli, mask, O_RDWR, DENY_ALL);
+ cli_nt_create(cli, mask, FILE_READ_DATA);
return 0;
}