From: Neel Chauhan Date: Sun, 17 May 2020 05:23:59 +0000 (-0700) Subject: Fix spacing in if statement in port_parse_config() X-Git-Tag: tor-0.4.5.0-alpha-dev~20^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2e0d0360cd0f8c1724c846f627b2a9940b4acbfb;p=thirdparty%2Ftor.git Fix spacing in if statement in port_parse_config() --- diff --git a/src/app/config/config.c b/src/app/config/config.c index 7ed373c548..71f8c18ca2 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -6159,7 +6159,7 @@ port_parse_config(smartlist_t *out, portname); goto err; } - if ( has_used_unix_socket_only_option && ! unix_socket_path) { + if (has_used_unix_socket_only_option && !unix_socket_path) { log_warn(LD_CONFIG, "You have a %sPort entry with GroupWritable, " "WorldWritable, or RelaxDirModeCheck, but it is not a " "unix socket.", portname);