diff options
author | Ermal <eri@pfsense.org> | 2012-03-02 19:07:24 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2012-03-02 19:07:24 +0000 |
commit | 3b8a17a1d060482cb2425c62418cd37445762226 (patch) | |
tree | 619a6915e5a572ccb5addac00052854297113ef3 /etc | |
parent | 66a346b4365a77c1ca873efc4dc9008ec23f2e53 (diff) | |
download | pfsense-3b8a17a1d060482cb2425c62418cd37445762226.zip pfsense-3b8a17a1d060482cb2425c62418cd37445762226.tar.gz |
Correctly match ntpd syslog messages
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/system.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/system.inc b/etc/inc/system.inc index 57de477..ef14c9c 100644 --- a/etc/inc/system.inc +++ b/etc/inc/system.inc @@ -542,7 +542,7 @@ function system_syslogd_start() { printf(gettext("Error: cannot open syslog.conf in system_syslogd_start().%s"), "\n"); return 1; } - $syslogconf .= "!ntpdate,!ntpd\n"; + $syslogconf .= "!ntpdate,ntpd\n"; if (!isset($syslogcfg['disablelocallogging'])) $syslogconf .= "*.* {$log_directive}{$g['varlog_path']}/ntpd.log\n"; @@ -1573,4 +1573,4 @@ function get_possible_listen_ips() { return $listenips; } -?>
\ No newline at end of file +?> |