summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_payback.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-10-07 15:10:24 +0200
committerChristian Grothoff <christian@grothoff.org>2017-10-07 15:10:24 +0200
commitcc5d09cf1d28e31ca8eca054b7da2c3873e2efe7 (patch)
treeeb843f228165457fa066038058df380fc5652405 /src/exchange/taler-exchange-httpd_payback.c
parent7935349d35611901d42d088f0e6dbd5ec8c47272 (diff)
downloadexchange-cc5d09cf1d28e31ca8eca054b7da2c3873e2efe7.tar.gz
exchange-cc5d09cf1d28e31ca8eca054b7da2c3873e2efe7.tar.bz2
exchange-cc5d09cf1d28e31ca8eca054b7da2c3873e2efe7.zip
properly handle signing errors if httpd lacks signing keys by returning internal errors (and handling new return value from TEH_KS_sign)
Diffstat (limited to 'src/exchange/taler-exchange-httpd_payback.c')
-rw-r--r--src/exchange/taler-exchange-httpd_payback.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/exchange/taler-exchange-httpd_payback.c b/src/exchange/taler-exchange-httpd_payback.c
index 4e2e1e46a..e6fade49e 100644
--- a/src/exchange/taler-exchange-httpd_payback.c
+++ b/src/exchange/taler-exchange-httpd_payback.c
@@ -82,9 +82,15 @@ reply_payback_success (struct MHD_Connection *connection,
amount);
pc.coin_pub = *coin_pub;
pc.reserve_pub = *reserve_pub;
- TEH_KS_sign (&pc.purpose,
- &pub,
- &sig);
+ if (GNUNET_OK !=
+ TEH_KS_sign (&pc.purpose,
+ &pub,
+ &sig))
+ {
+ return TEH_RESPONSE_reply_internal_error (connection,
+ TALER_EC_EXCHANGE_BAD_CONFIGURATION,
+ "no keys");
+ }
return TEH_RESPONSE_reply_json_pack (connection,
MHD_HTTP_OK,
"{s:o, s:o, s:o, s:o, s:o}",