summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_private-post-orders.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-02-17 20:48:28 +0100
committerChristian Grothoff <christian@grothoff.org>2021-02-17 20:48:28 +0100
commit441d1a5915beb96556541292f95f8d3a434e1d9a (patch)
tree133114236d22616677b31a9bed659d27dd29e239 /src/backend/taler-merchant-httpd_private-post-orders.c
parentf8bc94d00f82f12d1e7caf3d37bf7aac10c9d108 (diff)
downloadmerchant-441d1a5915beb96556541292f95f8d3a434e1d9a.tar.gz
merchant-441d1a5915beb96556541292f95f8d3a434e1d9a.tar.bz2
merchant-441d1a5915beb96556541292f95f8d3a434e1d9a.zip
fix account re-enable issue, related to #6755, but not exactly
Diffstat (limited to 'src/backend/taler-merchant-httpd_private-post-orders.c')
-rw-r--r--src/backend/taler-merchant-httpd_private-post-orders.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c b/src/backend/taler-merchant-httpd_private-post-orders.c
index 7162945c..e2103ecc 100644
--- a/src/backend/taler-merchant-httpd_private-post-orders.c
+++ b/src/backend/taler-merchant-httpd_private-post-orders.c
@@ -973,7 +973,7 @@ add_payment_details (struct MHD_Connection *connection,
if (NULL != payment_target)
{
while ( (NULL != wm) &&
- (GNUNET_YES == wm->active) &&
+ (wm->active) &&
(0 != strcasecmp (payment_target,
wm->wire_method) ) )
wm = wm->next;