1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

Fix boog in argument list for nt_create_andx.

(This used to be commit 6945e89e2d)
This commit is contained in:
Tim Potter
2002-10-30 14:52:53 +00:00
parent 7727a368f1
commit 44637311ea

View File

@ -160,7 +160,7 @@ static PyObject *py_smb_nt_create_andx(PyObject *self, PyObject *args,
/* Parse parameters */
if (!PyArg_ParseTupleAndKeywords(
args, kw, "si|iiii", kwlist, &filename, &desired_access,
args, kw, "si|iii", kwlist, &filename, &desired_access,
&file_attributes, &share_access, &create_disposition,
&create_options))
return NULL;