summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeel Chauhan <neel@neelc.org>2020-05-16 22:23:59 -0700
committerNeel Chauhan <neel@neelc.org>2020-05-16 22:23:59 -0700
commit2e0d0360cd0f8c1724c846f627b2a9940b4acbfb (patch)
treeafc89a46b3fe86c9c4b3d665aad0dae87c907310
parentdb4815dd8e7477803bc29c89284a7641b20ab5ba (diff)
downloadtor-2e0d0360cd0f8c1724c846f627b2a9940b4acbfb.tar.gz
tor-2e0d0360cd0f8c1724c846f627b2a9940b4acbfb.zip
Fix spacing in if statement in port_parse_config()
-rw-r--r--src/app/config/config.c2
1 files changed, 1 insertions, 1 deletions
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);