]> granicus.if.org Git - php/commitdiff
- Fix protos.
authorMarkus Fischer <mfischer@php.net>
Sun, 10 Mar 2002 23:45:02 +0000 (23:45 +0000)
committerMarkus Fischer <mfischer@php.net>
Sun, 10 Mar 2002 23:45:02 +0000 (23:45 +0000)
ext/standard/syslog.c

index 05e74b0381582decc2b64b68f4c3aaa2c4dcb42a..c62f65c631f4626fd17c271c3ad38828df1f3603 100644 (file)
@@ -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)
 {