o Minor bugfixes (hidden services):
- Stop tearing down the whole circuit when the user asks for a
connection to a port that the hidden service didn't configure.
- Resolves bug 444.
+ Resolves bug 444. [Bugfix on 0.1.2.x]
+
+ o Minor bugfixes (versioning):
+ - Stop under-counting the number of authorities that recommend each
+ version. [Bugfix on 0.1.2.x]
Changes in version 0.2.0.2-alpha - 2007-06-02
if (current && !strcmp(cp, current)) {
++n_seen;
} else {
- if (n_seen > n_versioning/2 && current)
+ if (current)
+ log_info(LD_DIR,"version %s is recommended by %d authorities",
+ current, n_seen);
+ if (n_seen > n_versioning/2 && current) {
smartlist_add(recommended, current);
- n_seen = 0; /* XXXX020 shouldn't this be 1? */
+ }
+ n_seen = 1;
current = cp;
}
});
+ if (current)
+ log_info(LD_DIR,"version %s is recommended by %d authorities",
+ current, n_seen);
if (n_seen > n_versioning/2 && current)
smartlist_add(recommended, current);