summaryrefslogtreecommitdiff
path: root/source3/python
diff options
context:
space:
mode:
authorLars Müller <lmuelle@samba.org>2005-07-13 21:10:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:00:05 -0500
commit1b148896a19956c2e1ac7f62144122be25951dc7 (patch)
treeae92064690c59eba9da100ad96de2640176c7ead /source3/python
parente7c48884a5c7e1f88ce2decf7d12db338ff8995e (diff)
downloadsamba-1b148896a19956c2e1ac7f62144122be25951dc7.tar.gz
samba-1b148896a19956c2e1ac7f62144122be25951dc7.tar.bz2
samba-1b148896a19956c2e1ac7f62144122be25951dc7.zip
r8435: Use OPENX_FILE_EXISTS_OPEN instead of FILE_EXISTS_OPEN.
(This used to be commit 22acd4936875e3c98ce7e26cde05f0ce69d8cb63)
Diffstat (limited to 'source3/python')
-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 d3858d33d8..679c113f39 100644
--- a/source3/python/py_smb.c
+++ b/source3/python/py_smb.c
@@ -154,7 +154,7 @@ static PyObject *py_smb_nt_create_andx(PyObject *self, PyObject *args,
char *filename;
uint32 desired_access, file_attributes = 0,
share_access = FILE_SHARE_READ | FILE_SHARE_WRITE,
- create_disposition = FILE_EXISTS_OPEN, create_options = 0;
+ create_disposition = OPENX_FILE_EXISTS_OPEN, create_options = 0;
int result;
/* Parse parameters */