From: Gert Doering Date: Tue, 28 Oct 2025 20:32:10 +0000 (+0100) Subject: remove redundant PULL_DEFINED() macro definition X-Git-Tag: v2.7_rc1~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e6ae2bc64239dd99a2d2a94e75fdaff45eb78deb;p=thirdparty%2Fopenvpn.git remove redundant PULL_DEFINED() macro definition this seems to be a leftover of the time when we had conditional compilation for "--disable-server" or thus. Commit d6a0cf599 removed PUSH_DEFINED() nearby but overlooked this one. Change-Id: I9118333bb65cd5db0836abefa5d45a729f0142cc Signed-off-by: Gert Doering Acked-by: Frank Lichtenheld Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1322 Message-Id: <20251028203219.11737-1-gert@greenie.muc.de> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg33984.html Signed-off-by: Gert Doering --- diff --git a/src/openvpn/options.h b/src/openvpn/options.h index 24253afa2..125e524c4 100644 --- a/src/openvpn/options.h +++ b/src/openvpn/options.h @@ -769,10 +769,6 @@ struct options #define PULL_DEFINED(opt) ((opt)->pull) -#ifndef PULL_DEFINED -#define PULL_DEFINED(opt) (false) -#endif - #ifdef _WIN32 #define ROUTE_OPTION_FLAGS(o) ((o)->route_method & ROUTE_METHOD_MASK) #else