From f2d1ace1b4be65154209808e84a9aa317ca5c1bd Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Mon, 19 May 2014 10:26:10 +0800 Subject: [PATCH] This should be this (broken compiling before) --- ext/session/mod_files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c index 2c2b0fa555..3366985279 100644 --- a/ext/session/mod_files.c +++ b/ext/session/mod_files.c @@ -121,7 +121,7 @@ static void ps_files_close(ps_files *data) static void ps_files_open(ps_files *data, const char *key TSRMLS_DC) { char buf[MAXPATHLEN]; -#ifdef O_NOFOLLOW +#if !defined(O_NOFOLLOW) || !defined(PHP_WIN32) struct stat sbuf; #endif -- 2.50.1