diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-03-15 09:21:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-03-15 09:21:29 -0400 |
commit | b48f8a8114575793046a8e9d3544d6b2d0a17f82 (patch) | |
tree | 406217796ac1f3ef57e50f3bebf2591a1da9b08a /src/or/config.c | |
parent | c9899ee64008b63cb9867115ac684590dd50f902 (diff) | |
download | tor-b48f8a8114575793046a8e9d3544d6b2d0a17f82.tar.gz tor-b48f8a8114575793046a8e9d3544d6b2d0a17f82.zip |
Fix whitespace.
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index 8f3c28c1c8..0e15f9bb07 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -6325,7 +6325,8 @@ parse_port_config(smartlist_t *out, ipv4_traffic = 1, ipv6_traffic = 0, prefer_ipv6 = 0, cache_ipv4 = 1, use_cached_ipv4 = 0, cache_ipv6 = 0, use_cached_ipv6 = 0, - prefer_ipv6_automap = 1, world_writable = 0, group_writable = 0, relax_dirmode_check = 0, + prefer_ipv6_automap = 1, world_writable = 0, group_writable = 0, + relax_dirmode_check = 0, has_used_unix_socket_only_option = 0; smartlist_split_string(elts, ports->value, NULL, @@ -6577,7 +6578,8 @@ parse_port_config(smartlist_t *out, 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); + "WorldWritable, or RelaxDirModeCheck, but it is not a " + "unix socket.", portname); goto err; } |