summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/auditor/taler-auditor-httpd.c43
-rw-r--r--src/auditor/taler-auditor-httpd_amount-arithmetic-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_bad-sig-losses-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_balances-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_closure-lags-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_coin-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_denomination-key-validity-withdraw-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_denomination-pending-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_denominations-without-sigs-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_emergency-by-count-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_emergency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_exchange-signkeys-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_fee-time-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_historic-denomination-revenue-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_historic-reserve-summary-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_misattribution-in-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_progress-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_purses-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_refreshes-hanging-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_reserve-in-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_reserves-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_row-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_row-minor-inconsistencies-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_wire-format-inconsistency-upd.c2
-rw-r--r--src/auditor/taler-auditor-httpd_wire-out-inconsistency-upd.c2
29 files changed, 48 insertions, 51 deletions
diff --git a/src/auditor/taler-auditor-httpd.c b/src/auditor/taler-auditor-httpd.c
index f9d746679..506ba1f13 100644
--- a/src/auditor/taler-auditor-httpd.c
+++ b/src/auditor/taler-auditor-httpd.c
@@ -36,6 +36,7 @@
#include "taler-auditor-httpd_amount-arithmetic-inconsistency-get.h"
#include "taler-auditor-httpd_amount-arithmetic-inconsistency-put.h"
#include "taler-auditor-httpd_amount-arithmetic-inconsistency-del.h"
+#include "taler-auditor-httpd_amount-arithmetic-inconsistency-upd.h"
#include "taler-auditor-httpd_coin-inconsistency-get.h"
#include "taler-auditor-httpd_coin-inconsistency-put.h"
#include "taler-auditor-httpd_coin-inconsistency-del.h"
@@ -458,6 +459,8 @@ handle_mhd_request (void *cls,
"application/json",
NULL, 0,
&TAH_DEPOSIT_CONFIRMATION_handler, MHD_HTTP_OK, true },
+
+
{ "/monitoring/deposit-confirmation", MHD_HTTP_METHOD_GET,
"application/json",
NULL, 0,
@@ -480,6 +483,10 @@ handle_mhd_request (void *cls,
"application/json",
NULL, 0,
&TAH_AMOUNT_ARITHMETIC_INCONSISTENCY_handler_delete, MHD_HTTP_OK, true },
+ { "/monitoring/amount-arithmetic-inconsistency", MHD_HTTP_METHOD_PATCH,
+ "application/json",
+ NULL, 0,
+ &TAH_AMOUNT_ARITHMETIC_INCONSISTENCY_handler_update, MHD_HTTP_OK, true },
{ "/monitoring/coin-inconsistency", MHD_HTTP_METHOD_GET,
"application/json",
@@ -493,6 +500,10 @@ handle_mhd_request (void *cls,
"application/json",
NULL, 0,
&TAH_COIN_INCONSISTENCY_handler_delete, MHD_HTTP_OK, true },
+ { "/monitoring/coin-inconsistency", MHD_HTTP_METHOD_PATCH,
+ "application/json",
+ NULL, 0,
+ &TAH_COIN_INCONSISTENCY_handler_update, MHD_HTTP_OK, true },
{ "/monitoring/row-inconsistency", MHD_HTTP_METHOD_GET,
"application/json",
@@ -506,25 +517,11 @@ handle_mhd_request (void *cls,
"application/json",
NULL, 0,
&TAH_ROW_INCONSISTENCY_handler_delete, MHD_HTTP_OK, true },
-
- { "/monitoring/reserve-balance-insufficient-inconsistency",
- MHD_HTTP_METHOD_GET,
+ { "/monitoring/row-inconsistency", MHD_HTTP_METHOD_PATCH,
"application/json",
NULL, 0,
- &TAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_handler_get,
- MHD_HTTP_OK, true },
- { "/monitoring/reserve-balance-insufficient-inconsistency",
- MHD_HTTP_METHOD_PUT,
- "application/json",
- NULL, 0,
- &TAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_handler_put,
- MHD_HTTP_OK, true },
- { "/monitoring/reserve-balance-insufficient-inconsistency",
- MHD_HTTP_METHOD_DELETE,
- "application/json",
- NULL, 0,
- &TAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_handler_delete,
- MHD_HTTP_OK, true },
+ &TAH_ROW_INCONSISTENCY_handler_update, MHD_HTTP_OK, true },
+
{ "/monitoring/bad-sig-losses", MHD_HTTP_METHOD_GET,
"application/json",
@@ -650,11 +647,11 @@ handle_mhd_request (void *cls,
NULL, 0,
&TAH_PROGRESS_handler_delete,
MHD_HTTP_OK, true },
- { "/monitoring/progress", MHD_HTTP_METHOD_PATCH,
+ /*{ "/monitoring/progress", MHD_HTTP_METHOD_PATCH,
"application/json",
NULL, 0,
&TAH_PROGRESS_handler_update,
- MHD_HTTP_OK, true },
+ MHD_HTTP_OK, true },*/
{ "/monitoring/reserve-balance-insufficient-inconsistency",
MHD_HTTP_METHOD_GET,
@@ -826,11 +823,11 @@ handle_mhd_request (void *cls,
NULL, 0,
&TAH_RESERVES_handler_delete,
MHD_HTTP_OK, true },
- { "/monitoring/reserves", MHD_HTTP_METHOD_PATCH,
+ /*{ "/monitoring/reserves", MHD_HTTP_METHOD_PATCH,
"application/json",
NULL, 0,
&TAH_RESERVES_handler_update,
- MHD_HTTP_OK, true },
+ MHD_HTTP_OK, true },*/
{ "/monitoring/purses", MHD_HTTP_METHOD_GET,
@@ -1070,11 +1067,11 @@ handle_mhd_request (void *cls,
NULL, 0,
&TAH_BALANCES_handler_delete,
MHD_HTTP_OK, true },
- { "/monitoring/balances", MHD_HTTP_METHOD_PATCH,
+ /*{ "/monitoring/balances", MHD_HTTP_METHOD_PATCH,
"application/json",
NULL, 0,
&TAH_BALANCES_handler_update,
- MHD_HTTP_OK, true },
+ MHD_HTTP_OK, true },*/
{ "/config", MHD_HTTP_METHOD_GET, "application/json",
NULL, 0,
diff --git a/src/auditor/taler-auditor-httpd_amount-arithmetic-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_amount-arithmetic-inconsistency-upd.c
index 728091010..642307a2d 100644
--- a/src/auditor/taler-auditor-httpd_amount-arithmetic-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_amount-arithmetic-inconsistency-upd.c
@@ -137,7 +137,7 @@ TAH_AMOUNT_ARITHMETIC_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_bad-sig-losses-upd.c b/src/auditor/taler-auditor-httpd_bad-sig-losses-upd.c
index 2f41010e9..1be070766 100644
--- a/src/auditor/taler-auditor-httpd_bad-sig-losses-upd.c
+++ b/src/auditor/taler-auditor-httpd_bad-sig-losses-upd.c
@@ -136,7 +136,7 @@ TAH_BAD_SIG_LOSSES_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_balances-upd.c b/src/auditor/taler-auditor-httpd_balances-upd.c
index 69af85a9a..cf702ba3e 100644
--- a/src/auditor/taler-auditor-httpd_balances-upd.c
+++ b/src/auditor/taler-auditor-httpd_balances-upd.c
@@ -136,7 +136,7 @@ TAH_BALANCES_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_closure-lags-upd.c b/src/auditor/taler-auditor-httpd_closure-lags-upd.c
index efeffdb05..9b043f974 100644
--- a/src/auditor/taler-auditor-httpd_closure-lags-upd.c
+++ b/src/auditor/taler-auditor-httpd_closure-lags-upd.c
@@ -136,7 +136,7 @@ TAH_CLOSURE_LAGS_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_coin-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_coin-inconsistency-upd.c
index 678ea8392..63dc00ca5 100644
--- a/src/auditor/taler-auditor-httpd_coin-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_coin-inconsistency-upd.c
@@ -136,7 +136,7 @@ TAH_COIN_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_denomination-key-validity-withdraw-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_denomination-key-validity-withdraw-inconsistency-upd.c
index 86454ba1a..d83e701fb 100644
--- a/src/auditor/taler-auditor-httpd_denomination-key-validity-withdraw-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_denomination-key-validity-withdraw-inconsistency-upd.c
@@ -138,7 +138,7 @@ TAH_DENOMINATION_KEY_VALIDITY_WITHDRAW_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_denomination-pending-upd.c b/src/auditor/taler-auditor-httpd_denomination-pending-upd.c
index 1b29243ec..569cf87f0 100644
--- a/src/auditor/taler-auditor-httpd_denomination-pending-upd.c
+++ b/src/auditor/taler-auditor-httpd_denomination-pending-upd.c
@@ -136,7 +136,7 @@ TAH_DENOMINATION_PENDING_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_denominations-without-sigs-upd.c b/src/auditor/taler-auditor-httpd_denominations-without-sigs-upd.c
index 442d8e328..c903b86ee 100644
--- a/src/auditor/taler-auditor-httpd_denominations-without-sigs-upd.c
+++ b/src/auditor/taler-auditor-httpd_denominations-without-sigs-upd.c
@@ -136,7 +136,7 @@ TAH_DENOMINATIONS_WITHOUT_SIGS_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_emergency-by-count-upd.c b/src/auditor/taler-auditor-httpd_emergency-by-count-upd.c
index fb20cd5ca..37c92ab28 100644
--- a/src/auditor/taler-auditor-httpd_emergency-by-count-upd.c
+++ b/src/auditor/taler-auditor-httpd_emergency-by-count-upd.c
@@ -136,7 +136,7 @@ TAH_EMERGENCY_BY_COUNT_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_emergency-upd.c b/src/auditor/taler-auditor-httpd_emergency-upd.c
index 83d73186c..eba466a9f 100644
--- a/src/auditor/taler-auditor-httpd_emergency-upd.c
+++ b/src/auditor/taler-auditor-httpd_emergency-upd.c
@@ -136,7 +136,7 @@ TAH_EMERGENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_exchange-signkeys-upd.c b/src/auditor/taler-auditor-httpd_exchange-signkeys-upd.c
index 7692ff563..3f8744a89 100644
--- a/src/auditor/taler-auditor-httpd_exchange-signkeys-upd.c
+++ b/src/auditor/taler-auditor-httpd_exchange-signkeys-upd.c
@@ -136,7 +136,7 @@ TAH_EXCHANGE_SIGNKEYS_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_fee-time-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_fee-time-inconsistency-upd.c
index 91d558b3a..3b4cea024 100644
--- a/src/auditor/taler-auditor-httpd_fee-time-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_fee-time-inconsistency-upd.c
@@ -136,7 +136,7 @@ TAH_FEE_TIME_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_historic-denomination-revenue-upd.c b/src/auditor/taler-auditor-httpd_historic-denomination-revenue-upd.c
index 078f7d05c..0fd1daec0 100644
--- a/src/auditor/taler-auditor-httpd_historic-denomination-revenue-upd.c
+++ b/src/auditor/taler-auditor-httpd_historic-denomination-revenue-upd.c
@@ -136,7 +136,7 @@ TAH_HISTORIC_DENOMINATION_REVENUE_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_historic-reserve-summary-upd.c b/src/auditor/taler-auditor-httpd_historic-reserve-summary-upd.c
index b5ce94cb8..39debc46d 100644
--- a/src/auditor/taler-auditor-httpd_historic-reserve-summary-upd.c
+++ b/src/auditor/taler-auditor-httpd_historic-reserve-summary-upd.c
@@ -136,7 +136,7 @@ TAH_HISTORIC_RESERVE_SUMMARY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_misattribution-in-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_misattribution-in-inconsistency-upd.c
index 3cbfc888f..3a2a7cdd3 100644
--- a/src/auditor/taler-auditor-httpd_misattribution-in-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_misattribution-in-inconsistency-upd.c
@@ -137,7 +137,7 @@ TAH_MISATTRIBUTION_IN_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_progress-upd.c b/src/auditor/taler-auditor-httpd_progress-upd.c
index 87826494b..9e3091788 100644
--- a/src/auditor/taler-auditor-httpd_progress-upd.c
+++ b/src/auditor/taler-auditor-httpd_progress-upd.c
@@ -136,7 +136,7 @@ TAH_PROGRESS_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-upd.c b/src/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-upd.c
index 14c673209..10024be5e 100644
--- a/src/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-upd.c
+++ b/src/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-upd.c
@@ -137,7 +137,7 @@ TAH_PURSE_NOT_CLOSED_INCONSISTENCIES_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_purses-upd.c b/src/auditor/taler-auditor-httpd_purses-upd.c
index 3de5a1745..56e561b63 100644
--- a/src/auditor/taler-auditor-httpd_purses-upd.c
+++ b/src/auditor/taler-auditor-httpd_purses-upd.c
@@ -123,7 +123,7 @@ TAH_PURSES_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_refreshes-hanging-upd.c b/src/auditor/taler-auditor-httpd_refreshes-hanging-upd.c
index 42121e7f4..edcb3b7a3 100644
--- a/src/auditor/taler-auditor-httpd_refreshes-hanging-upd.c
+++ b/src/auditor/taler-auditor-httpd_refreshes-hanging-upd.c
@@ -136,7 +136,7 @@ TAH_REFRESHES_HANGING_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-upd.c
index f20edb84f..d72915b06 100644
--- a/src/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-upd.c
@@ -137,7 +137,7 @@ TAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-upd.c
index f4051c392..aa20c9ca7 100644
--- a/src/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-upd.c
@@ -137,7 +137,7 @@ TAH_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_reserve-in-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_reserve-in-inconsistency-upd.c
index 765e552a1..c4707bb15 100644
--- a/src/auditor/taler-auditor-httpd_reserve-in-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_reserve-in-inconsistency-upd.c
@@ -136,7 +136,7 @@ TAH_RESERVE_IN_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-upd.c
index 4416820a5..586b15cdc 100644
--- a/src/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-upd.c
@@ -137,7 +137,7 @@ TAH_RESERVE_NOT_CLOSED_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_reserves-upd.c b/src/auditor/taler-auditor-httpd_reserves-upd.c
index fd00120a0..6d6a74d18 100644
--- a/src/auditor/taler-auditor-httpd_reserves-upd.c
+++ b/src/auditor/taler-auditor-httpd_reserves-upd.c
@@ -123,7 +123,7 @@ TAH_RESERVES_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_row-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_row-inconsistency-upd.c
index c99225dc8..405af1414 100644
--- a/src/auditor/taler-auditor-httpd_row-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_row-inconsistency-upd.c
@@ -136,7 +136,7 @@ TAH_ROW_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_row-minor-inconsistencies-upd.c b/src/auditor/taler-auditor-httpd_row-minor-inconsistencies-upd.c
index fc56c230d..515b2ea10 100644
--- a/src/auditor/taler-auditor-httpd_row-minor-inconsistencies-upd.c
+++ b/src/auditor/taler-auditor-httpd_row-minor-inconsistencies-upd.c
@@ -136,7 +136,7 @@ TAH_ROW_MINOR_INCONSISTENCIES_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_wire-format-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_wire-format-inconsistency-upd.c
index 56f7590ee..de3b90c2d 100644
--- a/src/auditor/taler-auditor-httpd_wire-format-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_wire-format-inconsistency-upd.c
@@ -136,7 +136,7 @@ TAH_WIRE_FORMAT_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);
diff --git a/src/auditor/taler-auditor-httpd_wire-out-inconsistency-upd.c b/src/auditor/taler-auditor-httpd_wire-out-inconsistency-upd.c
index 804901a8e..0f889f737 100644
--- a/src/auditor/taler-auditor-httpd_wire-out-inconsistency-upd.c
+++ b/src/auditor/taler-auditor-httpd_wire-out-inconsistency-upd.c
@@ -136,7 +136,7 @@ TAH_WIRE_OUT_INCONSISTENCY_handler_update (
break;
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
ret = TALER_MHD_reply_static (connection,
- MHD_HTTP_ACCEPTED,
+ MHD_HTTP_NO_CONTENT,
NULL,
NULL,
0);