From 587b513ec0a3edb20b326254c4b4defa8861d4bb Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Thu, 8 Sep 2005 21:36:27 +0000 Subject: [PATCH] remove obsolete kludge svn:r4953 --- src/or/config.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/or/config.c b/src/or/config.c index ddcb22a864..45e7046026 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1195,13 +1195,6 @@ resolve_my_address(or_options_t *options, uint32_t *addr_out, char **hostname_ou tor_assert(addr_out); - /* workaround: some people were leaving "Address " in their torrc, - * and they had a buggy resolver that resolved " " to 0.0.0.0. Oops. - */ - if (address) - while (TOR_ISSPACE(*address)) - address++; - if (address && *address) { strlcpy(hostname, address, sizeof(hostname)); } else { /* then we need to guess our address */