commit 60f5889ae formally depreciated use of configs without either "tls-client" or "tls-server" - but got the booleans wrong.
Fix. Signed-off-by: Gert Doering <g...@greenie.muc.de> --- src/openvpn/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openvpn/options.c b/src/openvpn/options.c index 3dd22d52..ef854c76 100644 --- a/src/openvpn/options.c +++ b/src/openvpn/options.c @@ -2541,7 +2541,7 @@ options_postprocess_verify_ce(const struct options *options, msg(M_USAGE, "specify only one of --tls-server, --tls-client, or --secret"); } - if (!options->tls_server || !options->tls_client) + if (!options->tls_server && !options->tls_client) { msg(M_INFO, "DEPRECATION: No tls-client or tls-server option in " "configuration detected. OpenVPN 2.7 will remove the " -- 2.26.3 _______________________________________________ Openvpn-devel mailing list Openvpn-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openvpn-devel