From f76141a7044ce1d57f8bf443f0d072b97fbf7a15 Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Fri, 27 Nov 2015 21:40:00 +0300 Subject: [PATCH] Fixed build when ENABLE_CLI_REMOTETCPFWD is the only allowed TCP forwarding. --- runopts.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runopts.h b/runopts.h index 062cfd8..62c9bf1 100644 --- a/runopts.h +++ b/runopts.h @@ -33,7 +33,8 @@ typedef struct runopts { -#if defined(ENABLE_SVR_REMOTETCPFWD) || defined(ENABLE_CLI_LOCALTCPFWD) +#if defined(ENABLE_SVR_REMOTETCPFWD) || defined(ENABLE_CLI_LOCALTCPFWD) \ + || defined(ENABLE_CLI_REMOTETCPFWD) int listen_fwd_all; #endif unsigned int recv_window;