summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-02-24 16:29:31 +0100
committerChristian Grothoff <christian@grothoff.org>2021-02-24 16:29:31 +0100
commit4e1770898a1de84dcfb4231ca89b1983f12e6c6a (patch)
tree11c155ac3350852218a7ca1314ba52c72e4f8327 /src
parentcf67e601342bafea2ab6dc9d0aae10610c3a0004 (diff)
downloadexchange-4e1770898a1de84dcfb4231ca89b1983f12e6c6a.tar.gz
exchange-4e1770898a1de84dcfb4231ca89b1983f12e6c6a.tar.bz2
exchange-4e1770898a1de84dcfb4231ca89b1983f12e6c6a.zip
fix statement order
Diffstat (limited to 'src')
-rw-r--r--src/exchange/taler-exchange-httpd_keys.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/exchange/taler-exchange-httpd_keys.c b/src/exchange/taler-exchange-httpd_keys.c
index 9245c8129..1acffb1a3 100644
--- a/src/exchange/taler-exchange-httpd_keys.c
+++ b/src/exchange/taler-exchange-httpd_keys.c
@@ -1676,9 +1676,9 @@ build_key_state (struct HelperState *hs,
true);
return NULL;
}
- qs = TEH_plugin->iterate_active_auditors (TEH_plugin->cls,
- &auditor_info_cb,
- ksh);
+ qs = TEH_plugin->iterate_auditor_denominations (TEH_plugin->cls,
+ &auditor_denom_cb,
+ ksh);
if (qs < 0)
{
GNUNET_break (0);
@@ -1686,9 +1686,9 @@ build_key_state (struct HelperState *hs,
true);
return NULL;
}
- qs = TEH_plugin->iterate_auditor_denominations (TEH_plugin->cls,
- &auditor_denom_cb,
- ksh);
+ qs = TEH_plugin->iterate_active_auditors (TEH_plugin->cls,
+ &auditor_info_cb,
+ ksh);
if (qs < 0)
{
GNUNET_break (0);