make the default printed values for boolean the same for all parameters.
authorHerb Lewis <herb@samba.org>
Thu, 3 Oct 2002 18:02:01 +0000 (18:02 +0000)
committerHerb Lewis <herb@samba.org>
Thu, 3 Oct 2002 18:02:01 +0000 (18:02 +0000)
(This used to be commit 074de699a20a1f8d8f45e576c50b94bb5aeb634e)

source3/param/loadparm.c

index 67276befec1d811a694c612f56737113ab745f7d..18cba172c090aa713bf3b26b14f3daa631d7ace6 100644 (file)
@@ -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}