]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Mark service descriptors as dirty when we have lost an intro point
authorNick Mathewson <nickm@torproject.org>
Tue, 13 Apr 2004 17:20:41 +0000 (17:20 +0000)
committerNick Mathewson <nickm@torproject.org>
Tue, 13 Apr 2004 17:20:41 +0000 (17:20 +0000)
svn:r1608

src/or/rendservice.c

index 22c521916bb458fec4771ba936cc587a49a0efe9..289e2bf079a321469f23e0ae41e6e76c1d1f1a43 100644 (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);
     }