tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit b7304027f661ae9abb1f306ac60aaaa3296d8a21
parent 08bfc2d71a856feee0db5d230d31c5ad6b45d0c5
Author: George Kadianakis <desnacked@riseup.net>
Date:   Wed, 18 Dec 2019 14:19:15 +0200

Merge branch 'tor-github/pr/1587'

Diffstat:
Achanges/bug32639 | 4++++
Msrc/feature/hs/hs_client.c | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/changes/bug32639 b/changes/bug32639 @@ -0,0 +1,4 @@ + o Minor bugfixes (onion services): + - In cancel_descriptor_fetches(), use connection_list_by_type_purpose() + instead of connection_list_by_type_state(). Fixes bug 32639; bugfix on + 0.3.2.1-alpha. Patch by Neel Chauhan. diff --git a/src/feature/hs/hs_client.c b/src/feature/hs/hs_client.c @@ -145,7 +145,7 @@ static void cancel_descriptor_fetches(void) { smartlist_t *conns = - connection_list_by_type_state(CONN_TYPE_DIR, DIR_PURPOSE_FETCH_HSDESC); + connection_list_by_type_purpose(CONN_TYPE_DIR, DIR_PURPOSE_FETCH_HSDESC); SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) { const hs_ident_dir_conn_t *ident = TO_DIR_CONN(conn)->hs_ident; if (BUG(ident == NULL)) {