summaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-09-07 13:00:04 +0200
committerChristian Grothoff <christian@grothoff.org>2020-09-07 13:00:04 +0200
commitf19e58b87d870d322d2a90d50488f5899f0e7049 (patch)
treee4634836467da6e296e5f54913c3bdb6856928dc /src/backend
parent023f10a37a7725f03a498b53a605e1fdf9e1906f (diff)
downloadmerchant-f19e58b87d870d322d2a90d50488f5899f0e7049.tar.gz
merchant-f19e58b87d870d322d2a90d50488f5899f0e7049.tar.bz2
merchant-f19e58b87d870d322d2a90d50488f5899f0e7049.zip
remove ?, as fulfillment_url cannot be NULL here
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/taler-merchant-httpd_private-get-orders-ID.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/backend/taler-merchant-httpd_private-get-orders-ID.c b/src/backend/taler-merchant-httpd_private-get-orders-ID.c
index a57845d4..5c43416b 100644
--- a/src/backend/taler-merchant-httpd_private-get-orders-ID.c
+++ b/src/backend/taler-merchant-httpd_private-get-orders-ID.c
@@ -982,7 +982,7 @@ TMH_private_get_orders_ID (const struct TMH_RequestHandler *rh,
NULL);
ret = TALER_MHD_reply_json_pack (connection,
MHD_HTTP_OK,
- "{s:s, s:s, s:s, s:s, s:s?}",
+ "{s:s, s:s, s:s, s:s, s:s}",
"taler_pay_uri",
taler_pay_uri,
"order_status_url",
@@ -1194,17 +1194,16 @@ TMH_private_get_orders_ID (const struct TMH_RequestHandler *rh,
*
* Note that we don't allow this outside of session-based payment, as
* otherwise this becomes an oracle to convert order_id to h_contract.
- */
- if (NULL != gorc->session_id)
+ */if (NULL != gorc->session_id)
h_contract = &gorc->h_contract_terms;
order_status_url =
- TMH_make_order_status_url (connection,
- hc->infix,
- gorc->session_id,
- hc->instance->settings.id,
- &claim_token,
- h_contract);
+ TMH_make_order_status_url (connection,
+ hc->infix,
+ gorc->session_id,
+ hc->instance->settings.id,
+ &claim_token,
+ h_contract);
}
ret = TALER_MHD_reply_json_pack (connection,