diff options
-rw-r--r-- | source3/param/loadparm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 0ed1dad1f7..957ba88011 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -573,7 +573,11 @@ static struct enum_list enum_case[] = { static struct enum_list enum_bool_auto[] = { {False, "False"}, + {False, "No"}, + {False, "0"}, {True, "True"}, + {True, "Yes"}, + {True, "1"}, {Auto, "Auto"}, {-1, NULL} }; |