diff options
author | Matt Johnston <matt@ucc.asn.au> | 2015-11-30 21:13:03 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2015-11-30 21:13:03 +0800 |
commit | f64a50f31995dc12bba316f3649e3e5f6ee64f90 (patch) | |
tree | d6d6119f22ae1379a4ad88898af2aa3db094b56f | |
parent | f299caf6127e1c6da7695d9d8f67d6158cbcbcb0 (diff) | |
parent | f76141a7044ce1d57f8bf443f0d072b97fbf7a15 (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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |