Mark service descriptors as dirty when we have lost an intro point

svn:r1608
This commit is contained in:
Nick Mathewson
2004-04-13 17:20:41 +00:00
parent a2ece0fc08
commit 11ca973d26
+1 -1
View File
@@ -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);
}