From 1ab641a70e1f2cc2548abfd03e62e3f8b04825d2 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 22 Sep 2016 10:21:13 -0400 Subject: Remove version_known, and subtly change the meaning of protocols_known --- src/or/routerparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/or/routerparse.c') diff --git a/src/or/routerparse.c b/src/or/routerparse.c index aecf6a2723..d5690c1101 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -2914,13 +2914,13 @@ routerstatus_parse_entry_from_string(memarea_t *area, } if ((tok = find_opt_by_keyword(tokens, K_V))) { tor_assert(tok->n_args == 1); - rs->version_known = 1; if (!strcmpstart(tok->args[0], "Tor ") && !found_protocol_list) { /* We only do version checks like this in the case where * the version is a "Tor" version, and where there is no * list of protocol versions that we should be looking at instead. */ rs->supports_extend2_cells = tor_version_as_new_as(tok->args[0], "0.2.4.8-alpha"); + rs->protocols_known = 1; } if (vote_rs) { vote_rs->version = tor_strdup(tok->args[0]); -- cgit v1.2.3-54-g00ecf