[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r11644: It is amazing how reliable missing svk st are at breaking co (in tor/trunk: . src/or)
Author: nickm
Date: 2007-09-25 19:35:28 -0400 (Tue, 25 Sep 2007)
New Revision: 11644
Modified:
tor/trunk/
tor/trunk/src/or/dirvote.c
Log:
r15367@catbus: nickm | 2007-09-25 19:31:11 -0400
It is amazing how reliable missing svk st are at breaking code.
Property changes on: tor/trunk
___________________________________________________________________
svk:merge ticket from /tor/trunk [r15367] on 8246c3cf-6607-4228-993b-4d95d33730f1
Modified: tor/trunk/src/or/dirvote.c
===================================================================
--- tor/trunk/src/or/dirvote.c 2007-09-25 23:11:59 UTC (rev 11643)
+++ tor/trunk/src/or/dirvote.c 2007-09-25 23:35:28 UTC (rev 11644)
@@ -1249,7 +1249,7 @@
SMARTLIST_FOREACH(router_get_trusted_dir_servers(),
trusted_dir_server_t *, ds,
{
- if ((ds->type & V3_AUTHORITY))
+ if (!(ds->type & V3_AUTHORITY))
continue;
if (!dirvote_get_vote(ds->v3_identity_digest)) {
char *cp = tor_malloc(HEX_DIGEST_LEN+1);