[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r20141: {} start a list of the branches and other patches that somebody (projects/todo)
Author: arma
Date: 2009-07-25 00:50:05 -0400 (Sat, 25 Jul 2009)
New Revision: 20141
Added:
projects/todo/git-branches
Log:
start a list of the branches and other patches that somebody ought to
merge into master. i'm sure i left some out. i wonder which ones.
Added: projects/todo/git-branches
===================================================================
--- projects/todo/git-branches (rev 0)
+++ projects/todo/git-branches 2009-07-25 04:50:05 UTC (rev 20141)
@@ -0,0 +1,41 @@
+
+To go into 0.2.2.1-alpha:
+
+Mikeperry's bw voting stuff:
+mikeperry/rs-format-fix7
+except Sebastian is going to clean it up first
+
+fix for bug 1026:
+sebastian/bug1026
+
+Add a new config option to make bulkexitlist work better:
+ioerror/DirFetchInfoExtraEarly
+
+fix for bug 1034:
+--- a/src/or/cpuworker.c
++++ b/src/or/cpuworker.c
+@@ -444,8 +444,10 @@ assign_onionskin_to_cpuworker(connection_t *cpuworker,
+ if (1) {
+ if (num_cpuworkers_busy == num_cpuworkers) {
+ log_debug(LD_OR,"No idle cpuworkers. Queuing.");
+- if (onion_pending_add(circ, onionskin) < 0)
++ if (onion_pending_add(circ, onionskin) < 0) {
++ tor_free(onionskin);
+ return -1;
++ }
+ return 0;
+ }
+
+fix to remove spaces from the fingerprint file that we write out:
+--- a/src/or/router.c
++++ b/src/or/router.c
+@@ -570,7 +570,7 @@ init_keys(void)
+ /* 5. Dump fingerprint to 'fingerprint' */
+ keydir = get_datadir_fname("fingerprint");
+ log_info(LD_GENERAL,"Dumping fingerprint to \"%s\"...",keydir);
+- if (crypto_pk_get_fingerprint(get_identity_key(), fingerprint, 1)<0) {
++ if (crypto_pk_get_fingerprint(get_identity_key(), fingerprint, 0)<0) {
+ log_err(LD_GENERAL,"Error computing fingerprint");
+ tor_free(keydir);
+ return -1;
+