summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-08-25 11:45:13 +0200
committerChristian Grothoff <christian@grothoff.org>2021-08-25 11:45:13 +0200
commit18a68ab78965be39d6a457675f17d33b3b81c1cb (patch)
tree61ea252efe451ae701938f6ef5d09770786748b4 /src/exchange/taler-exchange-httpd.c
parente50a5f4d2b85a47b1318bda2f4890812b0a8afad (diff)
downloadexchange-18a68ab78965be39d6a457675f17d33b3b81c1cb.tar.gz
exchange-18a68ab78965be39d6a457675f17d33b3b81c1cb.tar.bz2
exchange-18a68ab78965be39d6a457675f17d33b3b81c1cb.zip
ensure statements are prepared before keys subsystem initialization
Diffstat (limited to 'src/exchange/taler-exchange-httpd.c')
-rw-r--r--src/exchange/taler-exchange-httpd.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c
index 50aa85f7b..af0a49082 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -1419,6 +1419,13 @@ run (void *cls,
GNUNET_SCHEDULER_shutdown ();
return;
}
+ if (GNUNET_SYSERR ==
+ TEH_plugin->preflight (TEH_plugin->cls))
+ {
+ global_ret = EXIT_FAILURE;
+ GNUNET_SCHEDULER_shutdown ();
+ return;
+ }
if (GNUNET_OK !=
TEH_keys_init ())
{