diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-11-28 05:09:54 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-11-28 05:09:54 +0000 |
commit | 027a87ceedeefdf742a56a810ce0bf7f7fb67aca (patch) | |
tree | 23e75d70770c32eb62d94d189c0118494302f6b8 | |
parent | Modified nonblocking connect code so that this works as it should: (diff) | |
download | openvpn-027a87ceedeefdf742a56a810ce0bf7f7fb67aca.tar.xz |
svn merge -r 823:825 $SO/contrib/alon/BETA21/openvpn .
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@827 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r-- | init.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1670,7 +1670,8 @@ do_option_warnings (struct context *c) if (o->tls_client && !o->tls_verify && !o->tls_remote - && !(o->ns_cert_type & NS_SSL_SERVER)) + && !(o->ns_cert_type & NS_SSL_SERVER) + && !o->remote_cert_eku[0]) msg (M_WARN, "WARNING: No server certificate verification method has been enabled. See http://openvpn.net/howto.html#mitm for more info."); #endif #endif |