From 00821489d761bd70a189fc204578ab7885249bb5 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 1 Sep 2009 22:59:39 -0700 Subject: [PATCH] Unit test will now fail if allow_override bug is reintroduced. --- src/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.c b/src/conf.c index ea3d8f086e..e6bde71349 100644 --- a/src/conf.c +++ b/src/conf.c @@ -312,7 +312,7 @@ ConfTestOverrideValue2(void) if (ConfSet(name, value0, 0) != 1) return 0; - if (ConfSet(name, value1, 0) != 0) + if (ConfSet(name, value1, 1) != 0) return 0; if (ConfGet(name, &val) != 1) return 0;