diff options
author | Martin Schanzenbach <mschanzenbach@posteo.de> | 2020-05-25 09:48:12 +0200 |
---|---|---|
committer | Martin Schanzenbach <mschanzenbach@posteo.de> | 2020-05-25 09:48:12 +0200 |
commit | 2886db8f0b7628eda4aebd8d1a3b4effc1d1d62d (patch) | |
tree | f8af4c6ffc2aef16fd44908513ac3d9376547c86 /src/revocation | |
parent | 2fbc0f044f95f2a8ed8a87e980fe0ec4f4ddf650 (diff) |
fix sizes, should not affect actual operation
Diffstat (limited to 'src/revocation')
-rw-r--r-- | src/revocation/gnunet-revocation-tvg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/revocation/gnunet-revocation-tvg.c b/src/revocation/gnunet-revocation-tvg.c index 23a4bf020..805b7c39c 100644 --- a/src/revocation/gnunet-revocation-tvg.c +++ b/src/revocation/gnunet-revocation-tvg.c @@ -63,7 +63,7 @@ run (void *cls, fprintf(stdout, "Zone private key (d):\n%s\n\n", data_enc); GNUNET_free (data_enc); GNUNET_STRINGS_base64_encode (&id_pub, - sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey), + sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey), &data_enc); fprintf(stdout, "Zone public key (zk):\n%s\n\n", data_enc); GNUNET_free (data_enc); |