From 10f86071253851a59cf70c09f3036b9fa73b83db Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 24 Aug 2016 13:39:22 -0400 Subject: make check-spaces fixes --- src/or/config.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/or/config.c b/src/or/config.c index 1b6467695e..541025de16 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 -- cgit v1.2.3-54-g00ecf