diff options
author | Herb Lewis <herb@samba.org> | 2002-10-03 18:06:51 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2002-10-03 18:06:51 +0000 |
commit | ab8b6bd10b8729900c30b30db55e9239aa03f7cf (patch) | |
tree | 3f40fa07bd7d2b2e420c76d0519435955e2831e8 /source3/param | |
parent | a287517c7e94ce581c2a1d5f8034b3f6967abf87 (diff) | |
download | samba-ab8b6bd10b8729900c30b30db55e9239aa03f7cf.tar.gz samba-ab8b6bd10b8729900c30b30db55e9239aa03f7cf.tar.xz samba-ab8b6bd10b8729900c30b30db55e9239aa03f7cf.zip |
make the default printed values for boolean the same for all parameters.
(This used to be commit 5f1dff89be5dca013baed062e631144bacb2067b)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 67276befec1..18cba172c09 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} |