summaryrefslogtreecommitdiffstats
path: root/syslogd.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-08-08 13:52:33 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-08-08 13:52:33 +0000
commit7f4405ff42927df2d10fb03b3139b327b474565f (patch)
treeefc7b76e6e9e153a9a8699b85bd0cd106004d595 /syslogd.c
parentcc6a709ea6494720891cd7d5d522886194ae2609 (diff)
downloadrsyslog-7f4405ff42927df2d10fb03b3139b327b474565f.tar.gz
rsyslog-7f4405ff42927df2d10fb03b3139b327b474565f.tar.xz
rsyslog-7f4405ff42927df2d10fb03b3139b327b474565f.zip
fixed bug: default for $DropMsgsWithMaliciousDnsPTRRecords was not reset on
up and on $ResetConfigVariables
Diffstat (limited to 'syslogd.c')
-rw-r--r--syslogd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/syslogd.c b/syslogd.c
index 3266fe9d..137eff50 100644
--- a/syslogd.c
+++ b/syslogd.c
@@ -641,6 +641,7 @@ static rsRetVal resetConfigVariables(uchar __attribute__((unused)) *pp, void __a
bDebugPrintModuleList = 1;
bEscapeCCOnRcv = 1; /* default is to escape control characters */
bReduceRepeatMsgs = (logEveryMsg == 1) ? 0 : 1;
+ bDropMalPTRMsgs = 0;
#ifdef USE_PTHREADS
iMainMsgQueueSize = 10000;
#endif