tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 9728d3f8ac395d7157d30f9b73117b58d704432c
parent d82a8a7f9d268728b2447b2dbbaa346140784f9b
Author: Taylor R Campbell <campbell+tor@mumble.net>
Date:   Thu, 10 Jan 2019 18:11:36 +0000

Fix wrong bases.

Diffstat:
Msrc/core/or/circuitpadding.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/or/circuitpadding.c b/src/core/or/circuitpadding.c @@ -551,7 +551,7 @@ circpad_distribution_sample(circpad_distribution_t dist) { /* param1 is Mu, param2 is sigma. */ const struct logistic my_logistic = { - .base = LOGISTIC(my_uniform), + .base = LOGISTIC(my_logistic), .mu = dist.param1, .sigma = dist.param2, }; @@ -590,7 +590,7 @@ circpad_distribution_sample(circpad_distribution_t dist) { /* param1 is sigma, param2 is xi, no more params for mu so we use 0 */ const struct genpareto my_genpareto = { - .base = GENPARETO(my_weibull), + .base = GENPARETO(my_genpareto), .mu = 0, .sigma = dist.param1, .xi = dist.param2,