From fb7fab511e0de2566c0de47468b443ef5bb508d3 Mon Sep 17 00:00:00 2001 From: mono_matsuko Date: Mon, 5 Sep 2011 12:18:11 +0200 Subject: bugfix: rsyslogd -v always said 64 atomics were not present Signed-off-by: Rainer Gerhards --- ChangeLog | 4 ++++ tools/syslogd.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index de4e4b5d..ca49eb11 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ --------------------------------------------------------------------------- +Version 5.8.6 [V5-stable] (rgerhards/al), 2011-??-?? +- bugfix: rsyslogd -v always said 64 atomics were not present + thanks to mono_matsuko for the patch +--------------------------------------------------------------------------- Version 5.8.5 [V5-stable] (rgerhards/al), 2011-09-01 - bugfix/security: off-by-two bug in legacy syslog parser, CVE-2011-3200 - bugfix: mark message processing did not work correctly diff --git a/tools/syslogd.c b/tools/syslogd.c index 096f9309..6bed6a1a 100644 --- a/tools/syslogd.c +++ b/tools/syslogd.c @@ -2129,7 +2129,7 @@ static void printVersion(void) #else printf("\t32bit Atomic operations supported:\tNo\n"); #endif -#ifdef HAVE_ATOMIC_BUILTINS64 +#ifdef HAVE_ATOMIC_BUILTINS_64BIT printf("\t64bit Atomic operations supported:\tYes\n"); #else printf("\t64bit Atomic operations supported:\tNo\n"); -- cgit v1.2.3