From 44637311eadab5458793d40fb1ee14dc22956049 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 30 Oct 2002 14:52:53 +0000 Subject: Fix boog in argument list for nt_create_andx. (This used to be commit 6945e89e2d10743635f01420c83d405a2d4cb356) --- source3/python/py_smb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/python') 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; -- cgit