diff options
-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" |