aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2020-11-10 20:00:34 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2020-11-10 20:00:34 +0900
commit37e6d57460f3f4aecd7abbd74e107ff70edc8859 (patch)
treed21823c39241fabd5680b0b119bc627cc6948275
parent3e2903a65ee8c656d47a98dce0b4b9a9c9bb6e46 (diff)
downloadgnunet-37e6d57460f3f4aecd7abbd74e107ff70edc8859.tar.gz
gnunet-37e6d57460f3f4aecd7abbd74e107ff70edc8859.zip
-fix
-rw-r--r--src/include/gnunet_identity_service.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/gnunet_identity_service.h b/src/include/gnunet_identity_service.h
index e59cf65af..a75e573d6 100644
--- a/src/include/gnunet_identity_service.h
+++ b/src/include/gnunet_identity_service.h
@@ -510,10 +510,10 @@ GNUNET_IDENTITY_write_signature_to_buffer (const struct
510 */ 510 */
511int 511int
512GNUNET_IDENTITY_sign_ (const struct 512GNUNET_IDENTITY_sign_ (const struct
513 GNUNET_IDENTITY_PrivateKey *priv, 513 GNUNET_IDENTITY_PrivateKey *priv,
514 const struct 514 const struct
515 GNUNET_CRYPTO_EccSignaturePurpose *purpose, 515 GNUNET_CRYPTO_EccSignaturePurpose *purpose,
516 struct GNUNET_IDENTITY_Signature *sig); 516 struct GNUNET_IDENTITY_Signature *sig);
517 517
518 518
519/** 519/**
@@ -534,9 +534,9 @@ GNUNET_IDENTITY_sign_ (const struct
534 GNUNET_static_assert (((void*) (ps)) == \ 534 GNUNET_static_assert (((void*) (ps)) == \
535 ((void*) &(ps)->purpose)); \ 535 ((void*) &(ps)->purpose)); \
536 GNUNET_assert (GNUNET_OK == \ 536 GNUNET_assert (GNUNET_OK == \
537 GNUNET_IDENTITY_private_key_sign_ (priv, \ 537 GNUNET_IDENTITY_sign_ (priv, \
538 &(ps)->purpose, \ 538 &(ps)->purpose, \
539 sig)); \ 539 sig)); \
540} while (0) 540} while (0)
541 541
542 542