diff options
author | Roger Dingledine <arma@torproject.org> | 2017-06-21 17:42:10 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2017-06-21 17:42:10 -0400 |
commit | 005500e14d5a956601feb94712ea86e810d557f7 (patch) | |
tree | b6e79b76da582fcf82bbb9322248beef5f00b79d | |
parent | 3a8a92fddd7a21b8e6b0b5a463e86639f1d04fc8 (diff) | |
download | tor-005500e14d5a956601feb94712ea86e810d557f7.tar.gz tor-005500e14d5a956601feb94712ea86e810d557f7.zip |
make assign_onionskin_to_cpuworker failure case more clear
now it looks like the other time we call it
-rw-r--r-- | src/or/cpuworker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c index 1013fa555e..06d45f9960 100644 --- a/src/or/cpuworker.c +++ b/src/or/cpuworker.c @@ -474,7 +474,7 @@ queue_pending_tasks(void) if (!circ) return; - if (assign_onionskin_to_cpuworker(circ, onionskin)) + if (assign_onionskin_to_cpuworker(circ, onionskin) < 0) log_info(LD_OR,"assign_to_cpuworker failed. Ignoring."); } } |