summaryrefslogtreecommitdiff
path: root/main/php_syslog.c
diff options
context:
space:
mode:
authorJakub Zelenka <bukka@php.net>2018-07-22 16:29:35 +0100
committerJakub Zelenka <bukka@php.net>2018-07-22 16:29:35 +0100
commitc85504386d16f943cc79263187710a05cefea265 (patch)
tree4cb56844bd763ddce1a725b6c71f02e2bd82d99a /main/php_syslog.c
parent2010c02e5c3c70880a53cb0403ce696708f4d590 (diff)
downloadphp-git-c85504386d16f943cc79263187710a05cefea265.tar.gz
Rename none syslog.filter to all and update ini description
Diffstat (limited to 'main/php_syslog.c')
-rw-r--r--main/php_syslog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_syslog.c b/main/php_syslog.c
index 3bb9ee86dd..fd31a12d8c 100644
--- a/main/php_syslog.c
+++ b/main/php_syslog.c
@@ -94,7 +94,7 @@ PHPAPI void php_syslog(int priority, const char *format, ...) /* {{{ */
else if (c == '\n') {
syslog(priority, "%.*s", (int)sbuf.len, sbuf.c);
smart_string_reset(&sbuf);
- } else if ((c < 0x20) && (PG(syslog_filter) == PHP_SYSLOG_FILTER_NONE))
+ } else if ((c < 0x20) && (PG(syslog_filter) == PHP_SYSLOG_FILTER_ALL))
smart_string_appendc(&sbuf, c);
else {
const char xdigits[] = "0123456789abcdef";