From 33efac5185ac06476008630b94bb808a0cfc99d0 Mon Sep 17 00:00:00 2001 From: Thibault Godouet Date: Sat, 19 Nov 2016 21:06:12 +0000 Subject: [PATCH] fixed bug preventing audit from being disabled -- thanks Thomas Deutschmann --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index da08bfb..c634380 100644 --- a/configure.in +++ b/configure.in @@ -826,7 +826,7 @@ AC_ARG_WITH(audit, ;; esac ] ) -if test useaudit = "0"; then +if test "$useaudit" = "0"; then AC_MSG_RESULT(no) elif test "$useaudit" = "1" && test "$auditavail" != 1; then useaudit=0 -- 2.47.3