summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-10-27 13:44:41 +0200
committerChristian Grothoff <christian@grothoff.org>2021-10-27 13:44:41 +0200
commit4bfa68efee3d5f77522e94403c263030b46fcc05 (patch)
tree345e5632a78b51a74b02f96a68f2bf0fb7553648
parent77142acbe800d6f8fe0d8f65374403353ede5d30 (diff)
downloadexchange-4bfa68efee3d5f77522e94403c263030b46fcc05.tar.gz
exchange-4bfa68efee3d5f77522e94403c263030b46fcc05.tar.bz2
exchange-4bfa68efee3d5f77522e94403c263030b46fcc05.zip
-fix warning
-rw-r--r--src/exchange-tools/taler-exchange-offline.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exchange-tools/taler-exchange-offline.c b/src/exchange-tools/taler-exchange-offline.c
index 01661eac7..00c44da84 100644
--- a/src/exchange-tools/taler-exchange-offline.c
+++ b/src/exchange-tools/taler-exchange-offline.c
@@ -2669,7 +2669,7 @@ show_denomkeys (const struct TALER_SecurityModulePublicKeyP *secm_pub,
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Invalid security module signature for denomination key %s (aborting)\n",
- GNUNET_h2s (&h_denom_pub));
+ GNUNET_h2s (&h_denom_pub.hash));
global_ret = EXIT_FAILURE;
test_shutdown ();
return GNUNET_SYSERR;
@@ -3088,7 +3088,7 @@ sign_denomkeys (const struct TALER_SecurityModulePublicKeyP *secm_pub,
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Invalid security module signature for denomination key %s (aborting)\n",
- GNUNET_h2s (&h_denom_pub));
+ GNUNET_h2s (&h_denom_pub.hash));
global_ret = EXIT_FAILURE;
test_shutdown ();
GNUNET_JSON_parse_free (spec);