diff options
author | Jeremy Allison <jra@samba.org> | 1997-12-17 04:56:55 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1997-12-17 04:56:55 +0000 |
commit | efa661cb17d0a474403fc3589f716dc7d98502ff (patch) | |
tree | 1db50691daaf12d2ee81f5a8763a04bb6d91f876 /source3 | |
parent | 637c3ed4a3a99f37e7c7a7a1015934fae5621d27 (diff) | |
download | samba-efa661cb17d0a474403fc3589f716dc7d98502ff.tar.gz samba-efa661cb17d0a474403fc3589f716dc7d98502ff.tar.bz2 samba-efa661cb17d0a474403fc3589f716dc7d98502ff.zip |
Missed terminating {-1,NULL} in an enum parameter list.
Jeremy.
(This used to be commit 5ea3633445d49da7a71be51e008128b3bbfaef9c)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 47faefc571..b2a016d8a5 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -411,7 +411,7 @@ static struct enum_list enum_announce_as[] = {{ANNOUNCE_AS_NT, "NT"}, {ANNOUNCE_ static struct enum_list enum_case[] = {{CASE_LOWER, "lower"}, {CASE_UPPER, "upper"}, {-1, NULL}}; -static struct enum_list enum_lm_announce[] = {{0, "False"}, {1, "True"}, {2, "Auto"}}; +static struct enum_list enum_lm_announce[] = {{0, "False"}, {1, "True"}, {2, "Auto"}, {-1, NULL}}; static struct parm_struct { |