diff options
author | Jeremy Allison <jra@samba.org> | 1998-06-16 18:25:36 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-06-16 18:25:36 +0000 |
commit | bbd7ca65e706457f5dbc046e83b4bd8cdde5be8f (patch) | |
tree | 49c88c02e70e23012ee37b34bc4f47e6a963cee8 /source3/param | |
parent | c2e2e691ebece45f0dc3226ce1e5a61d1bb9fbce (diff) | |
download | samba-bbd7ca65e706457f5dbc046e83b4bd8cdde5be8f.tar.gz samba-bbd7ca65e706457f5dbc046e83b4bd8cdde5be8f.tar.bz2 samba-bbd7ca65e706457f5dbc046e83b4bd8cdde5be8f.zip |
clientgen: Added USE_SSL for client shutdown.
clitar.c: Added 'Samba style' comments before string_create_s().
loadparm.c: Fixed missing comma in SSL code.
util.c: Removed string_create_s(). Currently it's only called from
clitar.c and having it here as well as a static in clitar
causes the compile to break (Richard, please decide where
you want this function).
lib/rpc/parse/parse_net.c: Fix from <anders.blomdell@control.lth.se>
to stop coredump on missing parameter.
Jeremy.
(This used to be commit d23b44322570cb9a7aa2b86407bf4f91010a237b)
Diffstat (limited to 'source3/param')
-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 2122541000..820479ae65 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -449,7 +449,7 @@ static struct enum_list enum_case[] = {{CASE_LOWER, "lower"}, {CASE_UPPER, "uppe static struct enum_list enum_lm_announce[] = {{0, "False"}, {1, "True"}, {2, "Auto"}, {-1, NULL}}; #ifdef USE_SSL -static struct enum_list enum_ssl_version[] = {{SMB_SSL_V2, "ssl2"}, {SMB_SSL_V3, "ssl3"} +static struct enum_list enum_ssl_version[] = {{SMB_SSL_V2, "ssl2"}, {SMB_SSL_V3, "ssl3"}, {SMB_SSL_V23, "ssl2or3"}, {SMB_SSL_TLS1, "tls1"}, {-1, NULL}}; #endif |