diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2021-06-18 21:54:55 +0000 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2021-06-18 21:58:29 +0000 |
commit | 24b0c58ea4e8f9562f6c260cc567aba9e1f63ed3 (patch) | |
tree | 30ab658f64b1e02c1907eae77ad64db95e7ffe80 /security/openvpn/files | |
parent | 6df92a09ad7a75d3533ac3510cba668c74689255 (diff) |
security/openvpn: update to v2.5.3
Changelog: https://github.com/OpenVPN/openvpn/blob/release/2.5/Changes.rst
FreeBSD relevant changes:
Bugfixes
* disable connect-retry backoff for p2p (--secret) instances (Trac #1010, #1384)
* fix build with mbedtls w/o SSL renegotiation support
* fix small memory leak in free_key_ctx for auth_token
* Fix SIGSEGV (NULL deref) receiving push "echo" (Trac #1409) -
-> in FreeBSD ports, already fixed in 2.5.2_2 (PORTREVISION 2).
User-visible Changes
* update copyright messages in files and --version output
New features
* add --auth-token-user option (for --auth-token deployments without --auth-user-pass in client config)
Diffstat (limited to 'security/openvpn/files')
-rw-r--r-- | security/openvpn/files/patch-src_openvpn_options.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/security/openvpn/files/patch-src_openvpn_options.c b/security/openvpn/files/patch-src_openvpn_options.c deleted file mode 100644 index e46faee8efd0..000000000000 --- a/security/openvpn/files/patch-src_openvpn_options.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/openvpn/options.c.orig 2021-04-21 04:02:50 UTC -+++ src/openvpn/options.c -@@ -5319,7 +5319,7 @@ add_option(struct options *options, - { - /* only message-related ECHO are logged, since other ECHOs - * can potentially include security-sensitive strings */ -- if (strncmp(p[1], "msg", 3) == 0) -+ if (p[1] && strncmp(p[1], "msg", 3) == 0) - { - msg(M_INFO, "%s:%s", - pull_mode ? "ECHO-PULL" : "ECHO", |