diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-07-29 11:35:08 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-07-29 11:35:08 -0400 |
commit | e40794966fcf801a526b3faee049f779e63c888a (patch) | |
tree | 39e1881b3bd39025948d11c27a73cfef935dcaa9 | |
parent | cb11c1e37b5fc91b5b6215e357c65598113ceb39 (diff) | |
download | pfsense-e40794966fcf801a526b3faee049f779e63c888a.zip pfsense-e40794966fcf801a526b3faee049f779e63c888a.tar.gz |
Tell syslogd to not compress information to the following line is repeated N times. This unbreaks sshlockout_pf.
-rw-r--r-- | etc/inc/system.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/system.inc b/etc/inc/system.inc index c82f2bb..a4ce660 100644 --- a/etc/inc/system.inc +++ b/etc/inc/system.inc @@ -436,12 +436,12 @@ EOD; // Are we logging to a least one remote server ? if(strpos($syslogconf, "@") != false) - $retval = mwexec("/usr/sbin/syslogd -s -f {$g['varetc_path']}/syslog.conf"); + $retval = mwexec("/usr/sbin/syslogd -c -s -f {$g['varetc_path']}/syslog.conf"); else - $retval = mwexec("/usr/sbin/syslogd -ss -f {$g['varetc_path']}/syslog.conf"); + $retval = mwexec("/usr/sbin/syslogd -c -ss -f {$g['varetc_path']}/syslog.conf"); } else { - $retval = mwexec("/usr/sbin/syslogd -ss"); + $retval = mwexec("/usr/sbin/syslogd -c -ss"); } if ($g['booting']) |