summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_auditors.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-07-30 13:31:58 +0200
committerChristian Grothoff <christian@grothoff.org>2021-07-30 13:32:03 +0200
commitd821db366a9d2554c59e6450b352cddacd73b398 (patch)
tree73793e12119025b604050f7a637c18c17c473125 /src/exchange/taler-exchange-httpd_auditors.c
parent05bc00b5f226e6e6695ef00609a02549284c8f55 (diff)
downloadexchange-d821db366a9d2554c59e6450b352cddacd73b398.tar.gz
exchange-d821db366a9d2554c59e6450b352cddacd73b398.tar.bz2
exchange-d821db366a9d2554c59e6450b352cddacd73b398.zip
-fix misc enum confusions and other compiler warnings
Diffstat (limited to 'src/exchange/taler-exchange-httpd_auditors.c')
-rw-r--r--src/exchange/taler-exchange-httpd_auditors.c35
1 files changed, 15 insertions, 20 deletions
diff --git a/src/exchange/taler-exchange-httpd_auditors.c b/src/exchange/taler-exchange-httpd_auditors.c
index 62bfc3043..f3c061e39 100644
--- a/src/exchange/taler-exchange-httpd_auditors.c
+++ b/src/exchange/taler-exchange-httpd_auditors.c
@@ -209,27 +209,22 @@ TEH_handler_auditors (
&awc.auditor_sig),
GNUNET_JSON_spec_end ()
};
- enum GNUNET_DB_QueryStatus qs;
MHD_RESULT res;
-
- {
- enum GNUNET_GenericReturnValue res;
-
- res = TALER_MHD_parse_json_data (connection,
- root,
- spec);
- if (GNUNET_SYSERR == res)
- return MHD_NO; /* hard failure */
- if (GNUNET_NO == res)
- return MHD_YES; /* failure */
- }
-
- qs = TEH_DB_run_transaction (connection,
- "add auditor denom sig",
- &res,
- &add_auditor_denom_sig,
- &awc);
- if (qs < 0)
+ enum GNUNET_GenericReturnValue ret;
+
+ ret = TALER_MHD_parse_json_data (connection,
+ root,
+ spec);
+ if (GNUNET_SYSERR == ret)
+ return MHD_NO; /* hard failure */
+ if (GNUNET_NO == ret)
+ return MHD_YES; /* failure */
+ ret = TEH_DB_run_transaction (connection,
+ "add auditor denom sig",
+ &res,
+ &add_auditor_denom_sig,
+ &awc);
+ if (GNUNET_SYSERR == ret)
return res;
return TALER_MHD_reply_static (
connection,