From 7b84ab7fe10b0ccf6c5e93bebf06267e18a09bf8 Mon Sep 17 00:00:00 2001 From: Markus Teich Date: Wed, 31 Aug 2016 14:46:29 +0200 Subject: [PATCH] fix seller auction bootstrap --- brandt.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/brandt.c b/brandt.c index 4f5a3f5..685c878 100644 --- a/brandt.c +++ b/brandt.c @@ -88,6 +88,8 @@ static void seller_start (void *arg) { struct BRANDT_Auction *ad = (struct BRANDT_Auction *)arg; + enum auction_type atype; + enum outcome_type outcome; ad->task = NULL; @@ -97,6 +99,12 @@ seller_start (void *arg) /** todo: somehow mark auction as done / ready for cleanup */ return; } + + atype = ad->m > 0 ? auction_mPlusFirstPrice : auction_firstPrice; + outcome = ad->outcome_public ? outcome_public : outcome_private; + + if (handler_prep[atype][outcome][msg_init]) + handler_prep[atype][outcome][msg_init] (ad); }