From 949e6dbaae0b6e8821b8e011266c57255fc4153f Mon Sep 17 00:00:00 2001 From: Markus Fischer Date: Sun, 10 Mar 2002 23:45:02 +0000 Subject: [PATCH] - Fix protos. --- ext/standard/syslog.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c index 05e74b0381..c62f65c631 100644 --- a/ext/standard/syslog.c +++ b/ext/standard/syslog.c @@ -203,7 +203,7 @@ PHP_FUNCTION(define_syslog_variables) } /* }}} */ -/* {{{ proto int openlog(string ident, int option, int facility) +/* {{{ proto bool openlog(string ident, int option, int facility) Open connection to system logger */ /* ** OpenLog("nettopp", $LOG_PID, $LOG_LOCAL1); @@ -229,7 +229,7 @@ PHP_FUNCTION(openlog) } /* }}} */ -/* {{{ proto int closelog(void) +/* {{{ proto bool closelog(void) Close connection to system logger */ PHP_FUNCTION(closelog) { @@ -248,7 +248,7 @@ PHP_FUNCTION(closelog) } /* }}} */ -/* {{{ proto int syslog(int priority, string message) +/* {{{ proto bool syslog(int priority, string message) Generate a system log message */ PHP_FUNCTION(syslog) { -- 2.50.1