From adc594ec2e9cb32fe43af8f3147e2b5c97e42cf6 Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Thu, 3 Oct 2002 18:02:01 +0000 Subject: make the default printed values for boolean the same for all parameters. (This used to be commit 074de699a20a1f8d8f45e576c50b94bb5aeb634e) --- source3/param/loadparm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/param') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 67276befec..18cba172c0 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -642,11 +642,11 @@ static struct enum_list enum_case[] = { }; static struct enum_list enum_bool_auto[] = { - {False, "False"}, {False, "No"}, + {False, "False"}, {False, "0"}, - {True, "True"}, {True, "Yes"}, + {True, "True"}, {True, "1"}, {Auto, "Auto"}, {-1, NULL} -- cgit