summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2015-11-30 21:13:03 +0800
committerMatt Johnston <matt@ucc.asn.au>2015-11-30 21:13:03 +0800
commitf64a50f31995dc12bba316f3649e3e5f6ee64f90 (patch)
treed6d6119f22ae1379a4ad88898af2aa3db094b56f
parentf299caf6127e1c6da7695d9d8f67d6158cbcbcb0 (diff)
parentf76141a7044ce1d57f8bf443f0d072b97fbf7a15 (diff)
Merge pull request #15 from annulen/fix_cli_remotetcpfwd
Fixed build when ENABLE_CLI_REMOTETCPFWD is the only allowed TCP forw…
-rw-r--r--runopts.h3
1 files changed, 2 insertions, 1 deletions
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;