[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] bugfix: when we removed a dead helper node, we never commit...



Update of /home2/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/cvs/tor/src/or

Modified Files:
	circuitbuild.c 
Log Message:
bugfix: when we removed a dead helper node, we never committed that
change to disk.


Index: circuitbuild.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/circuitbuild.c,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -d -r1.179 -r1.180
--- circuitbuild.c	11 Dec 2005 12:14:26 -0000	1.179
+++ circuitbuild.c	13 Dec 2005 02:52:38 -0000	1.180
@@ -1770,6 +1770,7 @@
            helper->nickname, dbuf, why, tbuf);
       tor_free(helper);
       smartlist_del(helper_nodes, i);
+      changed = 1;
     } else
       ++i;
   }