[tor-commits] [tor/master] make check-spaces fixes

nickm at torproject.org nickm at torproject.org
Wed Aug 24 17:39:34 UTC 2016


commit 10f86071253851a59cf70c09f3036b9fa73b83db
Author: Nick Mathewson <nickm at torproject.org>
Date:   Wed Aug 24 13:39:22 2016 -0400

    make check-spaces fixes
---
 src/or/config.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/or/config.c b/src/or/config.c
index 1b64676..541025d 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -6899,7 +6899,8 @@ parse_ports(or_options_t *options, int validate_only,
 }
 
 /* Does port bind to IPv4? */
-static int port_binds_ipv4(const port_cfg_t *port)
+static int
+port_binds_ipv4(const port_cfg_t *port)
 {
   return tor_addr_family(&port->addr) == AF_INET ||
          (tor_addr_family(&port->addr) == AF_UNSPEC
@@ -6907,7 +6908,8 @@ static int port_binds_ipv4(const port_cfg_t *port)
 }
 
 /* Does port bind to IPv6? */
-static int port_binds_ipv6(const port_cfg_t *port)
+static int
+port_binds_ipv6(const port_cfg_t *port)
 {
   return tor_addr_family(&port->addr) == AF_INET6 ||
          (tor_addr_family(&port->addr) == AF_UNSPEC



More information about the tor-commits mailing list