summaryrefslogtreecommitdiffstats
path: root/source/python/py_smb.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-04-11 23:32:00 +0000
committerGerald Carter <jerry@samba.org>2003-04-11 23:32:00 +0000
commit74fab8f0d24004b1dfd5ce0fd7402895652f941f (patch)
tree7a6ce493fcd4d2d5559c5f08b4f294d2ce4f31f1 /source/python/py_smb.c
parentbeedde03fcdd37b567661d96d97efaac640601bd (diff)
downloadsamba-74fab8f0d24004b1dfd5ce0fd7402895652f941f.tar.gz
samba-74fab8f0d24004b1dfd5ce0fd7402895652f941f.tar.xz
samba-74fab8f0d24004b1dfd5ce0fd7402895652f941f.zip
smbcquota patch from metze
Diffstat (limited to 'source/python/py_smb.c')
-rw-r--r--source/python/py_smb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/python/py_smb.c b/source/python/py_smb.c
index 8d81176e4dd..d37b73cceb7 100644
--- a/source/python/py_smb.c
+++ b/source/python/py_smb.c
@@ -165,8 +165,8 @@ static PyObject *py_smb_nt_create_andx(PyObject *self, PyObject *args,
return NULL;
result = cli_nt_create_full(
- cli->cli, filename, desired_access, file_attributes,
- share_access, create_disposition, create_options);
+ cli->cli, filename, 0, desired_access, file_attributes,
+ share_access, create_disposition, create_options, 0);
if (cli_is_error(cli->cli)) {
PyErr_SetString(PyExc_RuntimeError, "nt_create_andx failed");