summaryrefslogtreecommitdiff
path: root/main/php_syslog.h
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-06-01 00:48:28 +0000
committerSascha Schumann <sas@php.net>2000-06-01 00:48:28 +0000
commitdc5af6decccabce0abb65045e0b57166e1eabfd1 (patch)
tree323367862dcbe88e1062a68fe55a38186e8b1d14 /main/php_syslog.h
parent8fe69306dc36f10aabe3384453d6fb21985cfeac (diff)
downloadphp-git-dc5af6decccabce0abb65045e0b57166e1eabfd1.tar.gz
s/sys_syslog/std_syslog/
Diffstat (limited to 'main/php_syslog.h')
-rw-r--r--main/php_syslog.h6
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