commit 60634bb994a98c2d4d3552c39dbf52832e670788 parent 0ed93097cb61de6754f95381a80d2c709206ea58 Author: Christian Grothoff <grothoff@gnunet.org> Date: Fri, 10 Jul 2026 09:37:54 +0200 fix cmp Diffstat:
| M | src/lib/merchant_api_post-orders-ORDER_ID-abort.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/merchant_api_post-orders-ORDER_ID-abort.c b/src/lib/merchant_api_post-orders-ORDER_ID-abort.c @@ -388,7 +388,7 @@ TALER_MERCHANT_post_orders_abort_create ( { struct TALER_MERCHANT_PostOrdersAbortHandle *poah; - if (MAX_REFUNDS > num_coins) + if (MAX_REFUNDS < num_coins) { GNUNET_break (0); return NULL;