summaryrefslogtreecommitdiff
path: root/src/mint
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-01-22 17:24:08 +0100
committerChristian Grothoff <christian@grothoff.org>2016-01-22 17:24:08 +0100
commite6432cd1ff4c66f1c3186c2acdb45b9cc1d599c5 (patch)
tree37b1f2b48207583fc2e595915ef686e71af82c5d /src/mint
parentdcf1a03a9387c4b1e98dac141da19a87204d07e7 (diff)
downloadexchange-e6432cd1ff4c66f1c3186c2acdb45b9cc1d599c5.tar.gz
exchange-e6432cd1ff4c66f1c3186c2acdb45b9cc1d599c5.tar.bz2
exchange-e6432cd1ff4c66f1c3186c2acdb45b9cc1d599c5.zip
use correct status code
Diffstat (limited to 'src/mint')
-rw-r--r--src/mint/taler-mint-httpd_responses.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mint/taler-mint-httpd_responses.c b/src/mint/taler-mint-httpd_responses.c
index 23aa9e8b9..041f694bf 100644
--- a/src/mint/taler-mint-httpd_responses.c
+++ b/src/mint/taler-mint-httpd_responses.c
@@ -1081,7 +1081,7 @@ TMH_RESPONSE_reply_deposit_pending (struct MHD_Connection *connection,
struct GNUNET_TIME_Absolute planned_exec_time)
{
return TMH_RESPONSE_reply_json_pack (connection,
- MHD_HTTP_FOUND,
+ MHD_HTTP_ACCEPTED,
"{s:o}",
"execution_time", TALER_json_from_abs (planned_exec_time));
}