diff options
author | Gerald Carter <jerry@samba.org> | 2003-04-11 23:32:00 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-04-11 23:32:00 +0000 |
commit | 5b51fc4f065e9e68eefb530eb99ad8da9f4e5d28 (patch) | |
tree | e0b97b40a4e42e5ccd1ca9de7b2cf4a4c837a899 /source3/python/py_smb.c | |
parent | 04bb7e808ae391d207afb2d87e55ea0d20659dd4 (diff) | |
download | samba-5b51fc4f065e9e68eefb530eb99ad8da9f4e5d28.tar.gz samba-5b51fc4f065e9e68eefb530eb99ad8da9f4e5d28.tar.bz2 samba-5b51fc4f065e9e68eefb530eb99ad8da9f4e5d28.zip |
smbcquota patch from metze
(This used to be commit 74fab8f0d24004b1dfd5ce0fd7402895652f941f)
Diffstat (limited to 'source3/python/py_smb.c')
-rw-r--r-- | source3/python/py_smb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/python/py_smb.c b/source3/python/py_smb.c index 8d81176e4d..d37b73cceb 100644 --- a/source3/python/py_smb.c +++ b/source3/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"); |