From 11c467f6431773abaa4cced036b3bf87d4ea7f22 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 6 Nov 2012 17:15:39 -0500 Subject: Fix a stupid logic-error in warnings about low ports. Instead of warning about low ports that are advertised, we should have been warning about low ports that we're listening on. Bug 7285, fix on 0.2.3.9-alpha. --- src/or/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/or/config.c b/src/or/config.c index dca49f5cf4..bf32fae0e2 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -5004,7 +5004,7 @@ check_server_ports(const smartlist_t *ports, continue; } #ifndef _WIN32 - if (!port->no_advertise && port->port < 1024) + if (!port->no_listen && port->port < 1024) ++n_low_port; #endif } SMARTLIST_FOREACH_END(port); -- cgit v1.2.3-54-g00ecf