]> granicus.if.org Git - php/commitdiff
s/sys_syslog/std_syslog/
authorSascha Schumann <sas@php.net>
Thu, 1 Jun 2000 00:48:28 +0000 (00:48 +0000)
committerSascha Schumann <sas@php.net>
Thu, 1 Jun 2000 00:48:28 +0000 (00:48 +0000)
main/php_syslog.h

index fe9e3871b12c73dd32a5ea4a93d71db508605075..c9abb8f0c6d101ba8ecbc40640c38b9c71d90a5b 100644 (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