From 1b148896a19956c2e1ac7f62144122be25951dc7 Mon Sep 17 00:00:00 2001 From: Lars Müller Date: Wed, 13 Jul 2005 21:10:12 +0000 Subject: r8435: Use OPENX_FILE_EXISTS_OPEN instead of FILE_EXISTS_OPEN. (This used to be commit 22acd4936875e3c98ce7e26cde05f0ce69d8cb63) --- 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 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 */ -- cgit