]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix two wide lines in config.c
authorNick Mathewson <nickm@torproject.org>
Thu, 13 Dec 2012 17:44:17 +0000 (12:44 -0500)
committerNick Mathewson <nickm@torproject.org>
Thu, 13 Dec 2012 17:44:17 +0000 (12:44 -0500)
src/or/config.c

index 59b4abdfb0d31673611b3d066fabaef0716c67e2..acfe2c4f833c999cce97cd82b57aad451e328ac8 100644 (file)
@@ -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;
     }