From 93f6f8cc9345e7309bdf7da3dd95bc1f884cafcb Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 13 Apr 2004 17:20:41 +0000 Subject: [PATCH] Mark service descriptors as dirty when we have lost an intro point svn:r1608 --- trunk/src/or/rendservice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/or/rendservice.c b/trunk/src/or/rendservice.c index 22c521916b..289e2bf079 100644 --- a/trunk/src/or/rendservice.c +++ b/trunk/src/or/rendservice.c @@ -734,7 +734,7 @@ void rend_services_introduce(void) { router = router_get_by_nickname(smartlist_get(service->intro_nodes,j)); if (!router || !find_intro_circuit(router,service->pk_digest)) { smartlist_del(service->intro_nodes,j--); - changed = 1; + changed = service->desc_is_dirty = 1; } smartlist_add(intro_routers, router); }