From ab8b6bd10b8729900c30b30db55e9239aa03f7cf Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Thu, 3 Oct 2002 18:06:51 +0000 Subject: make the default printed values for boolean the same for all parameters. (This used to be commit 5f1dff89be5dca013baed062e631144bacb2067b) --- 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