From: Sascha Schumann Date: Thu, 1 Jun 2000 00:48:28 +0000 (+0000) Subject: s/sys_syslog/std_syslog/ X-Git-Tag: PRE_EIGHT_BYTE_ALLOC_PATCH~163 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc5af6decccabce0abb65045e0b57166e1eabfd1;p=php s/sys_syslog/std_syslog/ --- 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