diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-02-16 18:17:32 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-02-16 18:17:32 +0000 |
commit | 6117b639d32095fa761f4773c9eec27e9f70f6f4 (patch) | |
tree | f2d0e64fff6bc42d2a7ed654ad38c14aeb01f55a /options.c | |
parent | Added --port-share option for allowing OpenVPN and HTTPS (diff) | |
download | openvpn-6117b639d32095fa761f4773c9eec27e9f70f6f4.tar.xz |
svn merge -r 888:889 https://svn.openvpn.net/projects/openvpn/contrib/alon/BETA21 21
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@894 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -484,8 +484,8 @@ static const char usage_message[] = " explicit extended key usage. Extended key usage can be encoded\n" " as an object identifier or OpenSSL string representation.\n" "--remote-cert-tls t: Require that peer certificate was signed with explicit\n" - " key usage and extended key usage based on TLS rules.\n" - " t = 'client | 'server'.\n" + " key usage and extended key usage based on RFC3280 TLS rules.\n" + " t = 'client' | 'server'.\n" #endif /* OPENSSL_VERSION_NUMBER */ #endif /* USE_SSL */ #ifdef ENABLE_PKCS11 @@ -4951,7 +4951,7 @@ add_option (struct options *options, if (streq (p[1], "server")) { options->remote_cert_ku[0] = 0xa0; - options->remote_cert_ku[1] = 0x08; + options->remote_cert_ku[1] = 0x88; options->remote_cert_eku = "TLS Web Server Authentication"; } else if (streq (p[1], "client")) |