From 6ae919048600bf548878c7f1a9ec32e3e7c085fe Mon Sep 17 00:00:00 2001 From: Dirk Stoecker Date: Mon, 12 Mar 2018 17:47:13 +0100 Subject: [PATCH] fix compiler warning --- http.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http.c b/http.c index 7f16ac9..3b85418 100644 --- a/http.c +++ b/http.c @@ -157,9 +157,9 @@ void proxy_protocol(PTSTREAM *pts) { while ( strcmp( buf, "\r\n" ) != 0 ) readline(pts); -/* If --encrypt-remproxy is specified, connect to the remote proxy using SSL */ - if ( args_info.encryptremproxy_flag ) - stream_enable_ssl(stunnel, args_info.remproxy_arg); + /* If --encrypt-remproxy is specified, connect to the remote proxy using SSL */ + if ( args_info.encryptremproxy_flag ) + stream_enable_ssl(stunnel, args_info.remproxy_arg); if( args_info.verbose_flag ) message( "\nTunneling to %s (destination)\n", args_info.dest_arg );