summaryrefslogtreecommitdiff
path: root/src/mhd
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-12-31 11:23:42 +0100
committerChristian Grothoff <christian@grothoff.org>2021-12-31 11:23:42 +0100
commitb49fac3d5892f75a2eb7fbfbca0056965c6967c7 (patch)
tree65af67ab223775b43b82aa6e34ac0616cd146197 /src/mhd
parent5cd2bc5de3abf5863ac1718043485a2a74a3d364 (diff)
downloadexchange-b49fac3d5892f75a2eb7fbfbca0056965c6967c7.tar.gz
exchange-b49fac3d5892f75a2eb7fbfbca0056965c6967c7.tar.bz2
exchange-b49fac3d5892f75a2eb7fbfbca0056965c6967c7.zip
-introduce new convenience macro
Diffstat (limited to 'src/mhd')
-rw-r--r--src/mhd/mhd_responses.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mhd/mhd_responses.c b/src/mhd/mhd_responses.c
index 2918440a2..a639f4052 100644
--- a/src/mhd/mhd_responses.c
+++ b/src/mhd/mhd_responses.c
@@ -371,8 +371,7 @@ TALER_MHD_make_error (enum TALER_ErrorCode ec,
const char *detail)
{
return TALER_MHD_MAKE_JSON_PACK (
- GNUNET_JSON_pack_uint64 ("code", ec),
- GNUNET_JSON_pack_string ("hint", TALER_ErrorCode_get_hint (ec)),
+ TALER_MHD_PACK_EC (ec),
GNUNET_JSON_pack_allow_null (
GNUNET_JSON_pack_string ("detail", detail)));
}
@@ -387,8 +386,7 @@ TALER_MHD_reply_with_error (struct MHD_Connection *connection,
return TALER_MHD_REPLY_JSON_PACK (
connection,
http_status,
- GNUNET_JSON_pack_uint64 ("code", ec),
- GNUNET_JSON_pack_string ("hint", TALER_ErrorCode_get_hint (ec)),
+ TALER_MHD_PACK_EC (ec),
GNUNET_JSON_pack_allow_null (
GNUNET_JSON_pack_string ("detail", detail)));
}