# HG changeset patch # User Matt Johnston # Date 1117642538 0 # Node ID 0d56e4b80dfb5dc593918ac88572315f30bb69ed # Parent 675f7bf3c3918effb426a9ba83a1d1b033a0cc5c * defined USING_LISTENERS when tcp forwarding is enabled but not X11 or agent forwarding diff -r 675f7bf3c391 -r 0d56e4b80dfb options.h --- a/options.h Fri May 27 16:34:57 2005 +0000 +++ b/options.h Wed Jun 01 16:15:38 2005 +0000 @@ -313,14 +313,6 @@ #define DISABLE_AGENTFWD #endif -#ifndef ENABLE_LOCALTCPFWD -#define DISABLE_TCPDIRECT -#endif - -#ifndef ENABLE_REMOTETCPFWD -#define DISABLE_REMOTETCPFWD -#endif - #if defined(ENABLE_CLI_REMOTETCPFWD) || defined(ENABLE_CLI_LOCALTCPFWD) #define ENABLE_CLI_ANYTCPFWD #endif @@ -329,7 +321,8 @@ #define DROPBEAR_TCP_ACCEPT #endif -#if defined(ENABLE_REMOTETCPFWD) || defined(ENABLE_LOCALTCPFWD) || \ +#if defined(ENABLE_CLI_REMOTETCPFWD) || defined(ENABLE_CLI_LOCALTCPFWD) || \ + defined(ENABLE_SVR_REMOTETCPFWD) || defined(ENABLE_SVR_LOCALTCPFWD) || \ defined(ENABLE_AGENTFWD) || defined(ENABLE_X11FWD) #define USING_LISTENERS #endif