summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_private-post-orders.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/taler-merchant-httpd_private-post-orders.c')
-rw-r--r--src/backend/taler-merchant-httpd_private-post-orders.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c b/src/backend/taler-merchant-httpd_private-post-orders.c
index 38722a47..deb888fc 100644
--- a/src/backend/taler-merchant-httpd_private-post-orders.c
+++ b/src/backend/taler-merchant-httpd_private-post-orders.c
@@ -1024,10 +1024,11 @@ add_payment_details (struct MHD_Connection *connection,
wm = hc->instance->wm_head;
while ( (NULL != wm) &&
- (GNUNET_YES != wm->active) &&
- (NULL == payment_target ||
- 0 != strcasecmp (payment_target,
- wm->wire_method) ) ) {
+ (! wm->active) &&
+ ( (NULL == payment_target) ||
+ (0 != strcasecmp (payment_target,
+ wm->wire_method) ) ) )
+ {
wm = wm->next;
}