From: Lev Stipakov <l...@openvpn.net> The correct return type for those functions is int, so adjust return type accordingly for the cases when DCO is not defined.
Signed-off-by: Lev Stipakov <l...@openvpn.net> --- v2: also do "return 0" in dco_p2p_add_new_peer() src/openvpn/dco.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/openvpn/dco.h b/src/openvpn/dco.h index 6b5c016a..e063853c 100644 --- a/src/openvpn/dco.h +++ b/src/openvpn/dco.h @@ -292,10 +292,10 @@ dco_update_keys(dco_context_t *dco, struct tls_multi *multi) ASSERT(false); } -static inline bool +static inline int dco_p2p_add_new_peer(struct context *c) { - return true; + return 0; } static inline int @@ -310,10 +310,10 @@ dco_remove_peer(struct context *c) { } -static inline bool +static inline int dco_multi_add_new_peer(struct multi_context *m, struct multi_instance *mi) { - return true; + return 0; } static inline void -- 2.23.0.windows.1 _______________________________________________ Openvpn-devel mailing list Openvpn-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openvpn-devel