summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_pay.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/taler-merchant-httpd_pay.c')
-rw-r--r--src/backend/taler-merchant-httpd_pay.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/taler-merchant-httpd_pay.c b/src/backend/taler-merchant-httpd_pay.c
index 8c9dcdf8..167fde86 100644
--- a/src/backend/taler-merchant-httpd_pay.c
+++ b/src/backend/taler-merchant-httpd_pay.c
@@ -313,12 +313,10 @@ pay_context_cleanup (struct TM_HandlerContext *hc)
* Function called with the result of our mint lookup.
*
* @param cls the `struct PayContext`
- * @param mint NULL if mint was not found to be acceptable
* @param mh NULL if mint was not found to be acceptable
*/
static void
process_pay_with_mint (void *cls,
- struct MERCHANT_Mint *mint,
struct TALER_MINT_Handle *mh)
{
struct PayContext *pc = cls;
@@ -327,7 +325,7 @@ process_pay_with_mint (void *cls,
const struct TALER_MINT_Keys *keys;
unsigned int i;
- if (NULL == mint)
+ if (NULL == mh)
{
/* The mint on offer is not in the set of our (trusted)
mints. Reject the payment. */