1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

s/sys_syslog/std_syslog/

This commit is contained in:
Sascha Schumann
2000-06-01 00:48:28 +00:00
parent 8fe69306dc
commit dc5af6decc

View File

@@ -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