summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-11-17 09:41:19 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2009-11-17 09:41:19 +0100
commitf868d6a17ab03761852699e95dbb0e401944af05 (patch)
tree21da7721665d454b173d51e8184e68a484803266 /tools
parentf94a3034b6c2218f51be5ab84bae591269e07215 (diff)
parent2a1d97263f639744b1caefe79ab60e4907e8ac41 (diff)
downloadrsyslog-f868d6a17ab03761852699e95dbb0e401944af05.tar.gz
rsyslog-f868d6a17ab03761852699e95dbb0e401944af05.tar.xz
rsyslog-f868d6a17ab03761852699e95dbb0e401944af05.zip
Merge branch 'v4-beta' into v4-devel
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 406fca02..e03bf4d8 100644
--- a/tools/syslogd.c
+++ b/tools/syslogd.c
@@ -3433,10 +3433,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) {