mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-06-11 01:40:05 -04:00
VERSION 2.1_beta4 (re-released)
--capath fix in ssl.c git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@641 e7ae566f-a301-0410-adde-c780ea21d3b5
This commit is contained in:
parent
c13953e314
commit
05d11e3d79
2 changed files with 2 additions and 1 deletions
|
|
@ -7,6 +7,7 @@ $Id$
|
|||
|
||||
* Fixed bug introduced in 2.1-beta3 where management
|
||||
socket bind would fail.
|
||||
* --capath fix in ssl.c (Zhuang Yuyao).
|
||||
* Added ".PHONY: plugin" to Makefile.am, reverted
|
||||
location of "plugin" directory (thanks to
|
||||
Matthias Andree for figuring this out).
|
||||
|
|
|
|||
2
ssl.c
2
ssl.c
|
|
@ -911,7 +911,7 @@ init_ssl (const struct options *options)
|
|||
}
|
||||
}
|
||||
|
||||
if (options->ca_file)
|
||||
if (options->ca_file || options->ca_path)
|
||||
{
|
||||
/* Load CA file for verifying peer supplied certificate */
|
||||
ASSERT (options->ca_file || options->ca_path);
|
||||
|
|
|
|||
Loading…
Reference in a new issue