mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-05-28 04:03:29 -04:00
Ignore --pull-filter for --mode server
OpenVPN-GUI (For Windows) currently always adds "--pull-filter" which is a fatal error when also using "--mode server" Using "--pull-filter" implicitly requires the use of "--pull". Using "--mode server" and "--pull" is a fatal error which supercedes "--pull-filter" Safely ignore "--pull-filter" for "--mode server" Trac: #1164 v2: Improve commit message, no functional changes. Signed-off-by: Richard Bonhomme <tincanteksup@gmail.com> Acked-by: Gert Doering <gert@greenie.muc.de> Message-Id: <20191024214832.22737-1-tincanteksup@gmail.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg18964.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
This commit is contained in:
parent
d77611c48c
commit
bb1ea491cd
1 changed files with 1 additions and 1 deletions
|
|
@ -2233,7 +2233,7 @@ options_postprocess_verify_ce(const struct options *options, const struct connec
|
|||
}
|
||||
if (options->pull_filter_list)
|
||||
{
|
||||
msg(M_USAGE, "--pull-filter cannot be used with --mode server");
|
||||
msg(M_WARN, "--pull-filter ignored for --mode server");
|
||||
}
|
||||
if (!(proto_is_udp(ce->proto) || ce->proto == PROTO_TCP_SERVER))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue