summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-11-12 14:49:37 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2009-11-12 14:49:37 +0100
commit3173f2782190bdd08fd1d277e4b401413691a353 (patch)
treee64ed33b3d57a7954abc51b73f28cfd5e52b5691
parentadab485b93a6bc87a90337f9f46dac1a9dfd62b1 (diff)
parent2194f86fdd4f92df0910593c46b2f3092513cfc2 (diff)
downloadrsyslog-3173f2782190bdd08fd1d277e4b401413691a353.tar.gz
rsyslog-3173f2782190bdd08fd1d277e4b401413691a353.tar.xz
rsyslog-3173f2782190bdd08fd1d277e4b401413691a353.zip
Merge branch 'v4-devel'
-rw-r--r--ChangeLog5
-rw-r--r--runtime/net.h4
-rw-r--r--tools/syslogd.c4
3 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 722faf05..9b5713ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -436,6 +436,8 @@ Version 4.4.3 [v4-stable] (rgerhards), 2009-10-??
Thanks to Klaus Tachtler for reporting this bug.
- bugfix: potential hang condition on queue shutdown
[imported from v3-stable]
+- bugfix: segfault on startup when -q or -Q option was given
+ [imported from v3-stable]
---------------------------------------------------------------------------
Version 4.4.2 [v4-stable] (rgerhards), 2009-10-09
- bugfix: invalid handling of zero-sized messages, could lead to mis-
@@ -692,6 +694,9 @@ Version 3.22.2 [v3-stable] (rgerhards), 2009-07-??
[if librelp != 1.0.0 is used]
- bugfix: sending syslog messages with zip compression did not work
- bugfix: potential hang condition on queue shutdown
+- bugfix: segfault on startup when -q or -Q option was given
+ bug tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=157
+ Thanks to Jonas Nogueira for reporting this bug.
- clarified use of $ActionsSendStreamDriver[AuthMode/PermittedPeers]
in doc set (require TLS drivers)
---------------------------------------------------------------------------
diff --git a/runtime/net.h b/runtime/net.h
index ec364b1c..a50b6fcb 100644
--- a/runtime/net.h
+++ b/runtime/net.h
@@ -149,8 +149,8 @@ BEGINinterface(net) /* name must also be changed in ENDinterface macro! */
/* v5 interface additions */
int (*CmpHost)(struct sockaddr_storage *, struct sockaddr_storage*, size_t);
/* data members - these should go away over time... TODO */
- int *pACLAddHostnameOnFail; /* add hostname to acl when DNS resolving has failed */
- int *pACLDontResolve; /* add hostname to acl instead of resolving it to IP(s) */
+ int pACLAddHostnameOnFail; /* add hostname to acl when DNS resolving has failed */
+ int pACLDontResolve; /* add hostname to acl instead of resolving it to IP(s) */
ENDinterface(net)
#define netCURR_IF_VERSION 5 /* increment whenever you change the interface structure! */
diff --git a/tools/syslogd.c b/tools/syslogd.c
index df04609c..a8cba185 100644
--- a/tools/syslogd.c
+++ b/tools/syslogd.c
@@ -2649,10 +2649,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) {