summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-12-13 12:44:17 -0500
committerNick Mathewson <nickm@torproject.org>2012-12-13 12:44:17 -0500
commit6a468a1722b074807eba7a0065ca6df8e2125745 (patch)
tree30476607b3751fcdb91938d1685e4ea991c318c3
parent01ac961ca1fc46efeec141ea275c6ea9971c3ee7 (diff)
downloadtor-6a468a1722b074807eba7a0065ca6df8e2125745.tar.gz
tor-6a468a1722b074807eba7a0065ca6df8e2125745.zip
Fix two wide lines in config.c
-rw-r--r--src/or/config.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 59b4abdfb0..acfe2c4f83 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -829,7 +829,8 @@ validate_dir_servers(or_options_t *options, or_options_t *old_options)
/* do we want to complain to the user about being partitionable? */
if ((options->DirAuthorities &&
(!old_options ||
- !config_lines_eq(options->DirAuthorities, old_options->DirAuthorities))) ||
+ !config_lines_eq(options->DirAuthorities,
+ old_options->DirAuthorities))) ||
(options->AlternateDirAuthority &&
(!old_options ||
!config_lines_eq(options->AlternateDirAuthority,
@@ -1955,8 +1956,8 @@ resolve_my_address(int warn_severity, const or_options_t *options,
* always. */
log_fn(warn_severity, LD_CONFIG,
"Address '%s' resolves to private IP address '%s'. "
- "Tor servers that use the default DirAuthorities must have public "
- "IP addresses.", hostname, addr_string);
+ "Tor servers that use the default DirAuthorities must have "
+ "public IP addresses.", hostname, addr_string);
tor_free(addr_string);
return -1;
}