diff options
author | Tim Potter <tpot@samba.org> | 2004-10-05 01:36:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:54 -0500 |
commit | 56fd69174ec939618a66bf663f3b4ea3448f2f8d (patch) | |
tree | deb45349e7f081e884605ef28cec48e5b2bd1b77 /source3 | |
parent | cc47bf997517e1313a511aba60539d37c1366d62 (diff) | |
download | samba-56fd69174ec939618a66bf663f3b4ea3448f2f8d.tar.gz samba-56fd69174ec939618a66bf663f3b4ea3448f2f8d.tar.bz2 samba-56fd69174ec939618a66bf663f3b4ea3448f2f8d.zip |
r2823: Patch from Brett Funderburg to pass create options parameter to
nt_create_andx() function.
(This used to be commit fa3e8365641e84ca361dc95bac33a9d56e9d799b)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/python/py_smb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/python/py_smb.c b/source3/python/py_smb.c index e5e6506196..1347f79a9b 100644 --- a/source3/python/py_smb.c +++ b/source3/python/py_smb.c @@ -149,7 +149,8 @@ static PyObject *py_smb_nt_create_andx(PyObject *self, PyObject *args, cli_state_object *cli = (cli_state_object *)self; static char *kwlist[] = { "filename", "desired_access", "file_attributes", "share_access", - "create_disposition", NULL }; + "create_disposition", "create_options", + NULL }; char *filename; uint32 desired_access, file_attributes = 0, share_access = FILE_SHARE_READ | FILE_SHARE_WRITE, @@ -159,7 +160,7 @@ static PyObject *py_smb_nt_create_andx(PyObject *self, PyObject *args, /* Parse parameters */ if (!PyArg_ParseTupleAndKeywords( - args, kw, "si|iii", kwlist, &filename, &desired_access, + args, kw, "si|iiii", kwlist, &filename, &desired_access, &file_attributes, &share_access, &create_disposition, &create_options)) return NULL; |