1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-14 20:23:54 +03:00

Fix boog in argument list for nt_create_andx.

This commit is contained in:
Tim Potter
-
parent 125c2fea55
commit 6945e89e2d

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;