summaryrefslogtreecommitdiffstats
path: root/source/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
commit22acd4936875e3c98ce7e26cde05f0ce69d8cb63 (patch)
tree7f085756d84f3f74340cb31128fab889a3c0f3a9 /source/python
parent0446319a3b8096df385978449ffaa231bc5cfd0c (diff)
downloadsamba-22acd4936875e3c98ce7e26cde05f0ce69d8cb63.tar.gz
samba-22acd4936875e3c98ce7e26cde05f0ce69d8cb63.tar.xz
samba-22acd4936875e3c98ce7e26cde05f0ce69d8cb63.zip
r8435: Use OPENX_FILE_EXISTS_OPEN instead of FILE_EXISTS_OPEN.
Diffstat (limited to 'source/python')
-rw-r--r--source/python/py_smb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/python/py_smb.c b/source/python/py_smb.c
index d3858d33d8c..679c113f397 100644
--- a/source/python/py_smb.c
+++ b/source/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 */