]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a wide line I introduced
authorNick Mathewson <nickm@torproject.org>
Tue, 4 Nov 2014 14:56:46 +0000 (09:56 -0500)
committerNick Mathewson <nickm@torproject.org>
Tue, 4 Nov 2014 14:56:46 +0000 (09:56 -0500)
src/or/config.c

index cb27dac3c0bc9686fe73d88f240ea3ddd192b12c..d7c1c5c4351035e6f2bc579e4137f79917c7672f 100644 (file)
@@ -4892,8 +4892,8 @@ parse_transport_line(const or_options_t *options,
     /* external */
 
     /* ClientTransportPlugins connecting through a proxy is managed only. */
-    if (!server &&
-        (options->Socks4Proxy || options->Socks5Proxy || options->HTTPSProxy)) {
+    if (!server && (options->Socks4Proxy || options->Socks5Proxy ||
+                    options->HTTPSProxy)) {
       log_warn(LD_CONFIG, "You have configured an external proxy with another "
                           "proxy type. (Socks4Proxy|Socks5Proxy|HTTPSProxy)");
       goto err;