aboutsummaryrefslogtreecommitdiff
path: root/sysklogd
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-05-23 09:29:57 +0000
committerEric Andersen <andersen@codepoet.org>2003-05-23 09:29:57 +0000
commit46ba568fc081fa49a757fe6f69f87cf64344d9cd (patch)
treee8e96afaa548b05d044230577de35cdba929c9e8 /sysklogd
parentd4f90ed37ecfae096dc6bf79f0ca0cefc5ff5756 (diff)
downloadbusybox-46ba568fc081fa49a757fe6f69f87cf64344d9cd.tar.gz
oops
Diffstat (limited to 'sysklogd')
-rw-r--r--sysklogd/syslogd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 416521f3c..03dcce5c1 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -437,8 +437,9 @@ static int serveConnection(char *tmpbuf, int n_read)
while (isdigit(*(++p))) {
pri = 10 * pri + (*p - '0');
}
- if (pri & ~(LOG_FACMASK | LOG_PRIMASK)){
+ if (pri & ~(LOG_FACMASK | LOG_PRIMASK)) {
pri = (LOG_USER | LOG_NOTICE);
+ }
} else if (c == '\n') {
*q++ = ' ';
} else if (iscntrl(c) && (c < 0177)) {