summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-11-17 09:41:00 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2009-11-17 09:41:00 +0100
commit2a1d97263f639744b1caefe79ab60e4907e8ac41 (patch)
treede928841e3574019c8c7fe9a06ea96577fe202c9 /tools
parent8aec830cf5531390b444ab0744d629b5e89e7440 (diff)
parentd8b3669e6d790c916afc0fa228e3cd7ac8d40063 (diff)
downloadrsyslog-2a1d97263f639744b1caefe79ab60e4907e8ac41.tar.gz
rsyslog-2a1d97263f639744b1caefe79ab60e4907e8ac41.tar.xz
rsyslog-2a1d97263f639744b1caefe79ab60e4907e8ac41.zip
Merge branch 'v4-stable' into v4-beta
Diffstat (limited to 'tools')
-rw-r--r--tools/syslogd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c
index 374d3307..7fb69277 100644
--- a/tools/syslogd.c
+++ b/tools/syslogd.c
@@ -3422,10 +3422,10 @@ int realMain(int argc, char **argv)
fprintf(stderr, "error -p is no longer supported, use module imuxsock instead");
}
case 'q': /* add hostname if DNS resolving has failed */
- net.pACLAddHostnameOnFail = 1;
+ *(net.pACLAddHostnameOnFail) = 1;
break;
case 'Q': /* dont resolve hostnames in ACL to IPs */
- net.pACLDontResolve = 1;
+ *(net.pACLDontResolve) = 1;
break;
case 'r': /* accept remote messages */
if(iCompatibilityMode < 3) {