summaryrefslogtreecommitdiff
path: root/ext/standard/syslog.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/syslog.c')
-rw-r--r--ext/standard/syslog.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c
index b07f6d6a51..5926abf34e 100644
--- a/ext/standard/syslog.c
+++ b/ext/standard/syslog.c
@@ -32,8 +32,7 @@
#include "basic_functions.h"
#include "php_ext_syslog.h"
-/* {{{ PHP_MINIT_FUNCTION
- */
+/* {{{ PHP_MINIT_FUNCTION */
PHP_MINIT_FUNCTION(syslog)
{
/* error levels */
@@ -127,8 +126,7 @@ void php_openlog(const char *ident, int option, int facility)
PG(have_called_openlog) = 1;
}
-/* {{{ proto bool openlog(string ident, int option, int facility)
- Open connection to system logger */
+/* {{{ Open connection to system logger */
/*
** OpenLog("nettopp", $LOG_PID, $LOG_LOCAL1);
** Syslog($LOG_EMERG, "help me!")
@@ -158,8 +156,7 @@ PHP_FUNCTION(openlog)
}
/* }}} */
-/* {{{ proto bool closelog(void)
- Close connection to system logger */
+/* {{{ Close connection to system logger */
PHP_FUNCTION(closelog)
{
ZEND_PARSE_PARAMETERS_NONE();
@@ -173,8 +170,7 @@ PHP_FUNCTION(closelog)
}
/* }}} */
-/* {{{ proto bool syslog(int priority, string message)
- Generate a system log message */
+/* {{{ Generate a system log message */
PHP_FUNCTION(syslog)
{
zend_long priority;