diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-03-18 11:47:14 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-03-18 11:47:14 +0100 |
commit | ff192e5b3cea37863d3a080ad993ad3233a852b6 (patch) | |
tree | 560a2422371d168ae0f22b3f7db5e59811ec1c1a | |
parent | b097e889a14de1341262e53c70451f67bbe077ab (diff) | |
download | rsyslog-ff192e5b3cea37863d3a080ad993ad3233a852b6.tar.gz rsyslog-ff192e5b3cea37863d3a080ad993ad3233a852b6.tar.bz2 rsyslog-ff192e5b3cea37863d3a080ad993ad3233a852b6.zip |
bugfix: mmanon did not build on some platforms (e.g. Ubuntu)
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | plugins/mmanon/mmanon.c | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -1,8 +1,9 @@ --------------------------------------------------------------------------- -Version 7.3.8 [devel] 2013-03-?? +Version 7.3.8 [devel] 2013-03-18 - imrelp: now supports listening to IPv4/v6 only instead of always both build now requires librelp 1.0.2 closes: http://bugzilla.adiscon.com/show_bug.cgi?id=378 +- bugfix: mmanon did not build on some platforms (e.g. Ubuntu) - bugfix: segfault in expression optimizer closes: http://bugzilla.adiscon.com/show_bug.cgi?id=423 - bugfix: imuxsock was missing SysSock.ParseTrusted module parameter diff --git a/plugins/mmanon/mmanon.c b/plugins/mmanon/mmanon.c index fc0c8a03..a1c99d09 100644 --- a/plugins/mmanon/mmanon.c +++ b/plugins/mmanon/mmanon.c @@ -29,6 +29,7 @@ #include <signal.h> #include <errno.h> #include <unistd.h> +#include <stdint.h> #include "conf.h" #include "syslogd-types.h" #include "srUtils.h" |