The previous commit (e86bc8b2967) breaks compilation if all compression
algorithms are disabled (--disable-lz4 --disable-lzo).  A later patch
in the series would fix this but can not be merged yet.

Signed-off-by: Gert Doering <g...@greenie.muc.de>
---
 src/openvpn/options.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/openvpn/options.c b/src/openvpn/options.c
index 435e1ca9..e3d14e94 100644
--- a/src/openvpn/options.c
+++ b/src/openvpn/options.c
@@ -3779,8 +3779,10 @@ options_postprocess_mutate(struct options *o, struct 
env_set *es)
     /* this depends on o->windows_driver, which is set above */
     options_postprocess_mutate_invariant(o);
 
+#ifdef USE_COMP
     /* check that compression settings in the options are okay */
     check_compression_settings_valid(&o->comp, M_USAGE);
+#endif
 
     /*
      * Save certain parms before modifying options during connect, especially
-- 
2.39.2



_______________________________________________
Openvpn-devel mailing list
Openvpn-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openvpn-devel

Reply via email to