1 [PATCH] fix build with --disable-crypto
3 options.c is missing the definition for struct context when built with
4 --disable-crypto, as it then doesn't get pulled in through push.h,
5 leading to build errors like:
7 options.c: In function ‘parse_http_proxy_fallback’:
8 options.c:1474: error: dereferencing pointer to incomplete type
9 options.c:1477: error: dereferencing pointer to incomplete type
10 options.c:1478: error: dereferencing pointer to incomplete type
12 Fix it by including forward.h
14 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
17 1 file changed, 1 insertion(+)
19 Index: openvpn-2.1.3/options.c
20 ===================================================================
21 --- openvpn-2.1.3.orig/options.c
22 +++ openvpn-2.1.3/options.c