diff options
author | Konstantin Tokarev <ktokarev@smartlabs.tv> | 2015-11-27 21:40:00 +0300 |
---|---|---|
committer | Konstantin Tokarev <ktokarev@smartlabs.tv> | 2015-11-27 21:40:00 +0300 |
commit | f76141a7044ce1d57f8bf443f0d072b97fbf7a15 (patch) | |
tree | c8939637b79145600d9d4022eac5d8bde2e42aca /runopts.h | |
parent | a3049d6433ec461113c60181014caa8f7a532db4 (diff) |
Fixed build when ENABLE_CLI_REMOTETCPFWD is the only allowed TCP forwarding.
Diffstat (limited to 'runopts.h')
-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; |