diff options
-rw-r--r-- | main/php_syslog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/php_syslog.h b/main/php_syslog.h index fe9e3871b1..c9abb8f0c6 100644 --- a/main/php_syslog.h +++ b/main/php_syslog.h @@ -8,7 +8,7 @@ #endif /* - * SCO OpenServer 5 defines syslog to var_syslog/sys_syslog which + * SCO OpenServer 5 defines syslog to var_syslog/std_syslog which * causes trouble with our use of syslog. We define php_syslog * to be the system function syslog. */ @@ -17,8 +17,8 @@ #if defined(var_syslog) && var_syslog == syslog #define php_syslog var_syslog -#elif defined(sys_syslog) && sys_syslog == syslog -#define php_syslog sys_syslog +#elif defined(std_syslog) && std_syslog == syslog +#define php_syslog std_syslog #endif #endif |