summaryrefslogtreecommitdiff
path: root/source3/python/py_smb.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-10-30 14:52:53 +0000
committerTim Potter <tpot@samba.org>2002-10-30 14:52:53 +0000
commit44637311eadab5458793d40fb1ee14dc22956049 (patch)
treefc152abf31b72f866e87642a6069872543defdd5 /source3/python/py_smb.c
parent7727a368f11bda1cbc15bdfab79b9bdb07d3433a (diff)
downloadsamba-44637311eadab5458793d40fb1ee14dc22956049.tar.gz
samba-44637311eadab5458793d40fb1ee14dc22956049.tar.bz2
samba-44637311eadab5458793d40fb1ee14dc22956049.zip
Fix boog in argument list for nt_create_andx.
(This used to be commit 6945e89e2d10743635f01420c83d405a2d4cb356)
Diffstat (limited to 'source3/python/py_smb.c')
-rw-r--r--source3/python/py_smb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/python/py_smb.c b/source3/python/py_smb.c
index 0936826488..41b8237a8a 100644
--- a/source3/python/py_smb.c
+++ b/source3/python/py_smb.c
@@ -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;