| 
      
      
      From: Gert D. <ge...@gr...> - 2025-10-28 20:32:32
      
     | 
| 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 <ge...@gr...> Acked-by: Frank Lichtenheld <fr...@li...> Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1322 --- This change was reviewed on Gerrit and approved by at least one developer. I request to merge it to master. Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1322 This mail reflects revision 1 of this Change. Acked-by according to Gerrit (reflected above): Frank Lichtenheld <fr...@li...> diff --git a/src/openvpn/options.h b/src/openvpn/options.h index 24253af..125e524 100644 --- a/src/openvpn/options.h +++ b/src/openvpn/options.h @@ -769,10 +769,6 @@ #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 |