diff options
| author | Gerald Carter <jerry@samba.org> | 2003-04-15 19:51:17 +0000 | 
|---|---|---|
| committer | Gerald Carter <jerry@samba.org> | 2003-04-15 19:51:17 +0000 | 
| commit | d15cd357c702aaad4093f770d557b61a4e12f3a0 (patch) | |
| tree | 921d2f4cd5a42165ab1be9d4759b14bc2c945e97 /source3/python | |
| parent | f7792732e66b7fc9a6ef4a07ea35b3a2e50f3f69 (diff) | |
| download | samba-d15cd357c702aaad4093f770d557b61a4e12f3a0.tar.gz samba-d15cd357c702aaad4093f770d557b61a4e12f3a0.tar.bz2 samba-d15cd357c702aaad4093f770d557b61a4e12f3a0.zip | |
merge in metze' smbcquotas patch from HEAD
(This used to be commit b6a77048886151435a4a5eeb9a04be44d397c504)
Diffstat (limited to 'source3/python')
| -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"); | 
