diff options
author | Herb Lewis <herb@samba.org> | 2002-10-03 18:02:01 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2002-10-03 18:02:01 +0000 |
commit | adc594ec2e9cb32fe43af8f3147e2b5c97e42cf6 (patch) | |
tree | 4486c10717d749e0f6ca69dd5c4e4dea389f7f67 /source3/param | |
parent | 4a1e64555cf70b9d131f13ce746b1b8b3af4c968 (diff) | |
download | samba-adc594ec2e9cb32fe43af8f3147e2b5c97e42cf6.tar.gz samba-adc594ec2e9cb32fe43af8f3147e2b5c97e42cf6.tar.bz2 samba-adc594ec2e9cb32fe43af8f3147e2b5c97e42cf6.zip |
make the default printed values for boolean the same for all parameters.
(This used to be commit 074de699a20a1f8d8f45e576c50b94bb5aeb634e)
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 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} |