From: Markus Fischer Date: Sun, 10 Mar 2002 23:45:02 +0000 (+0000) Subject: - Fix protos. X-Git-Tag: help~99 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=949e6dbaae0b6e8821b8e011266c57255fc4153f;p=php - Fix protos. --- 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) {