summaryrefslogtreecommitdiff
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)
-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
*/
int
GNUNET_IDENTITY_sign_ (const struct
- GNUNET_IDENTITY_PrivateKey *priv,
- const struct
- GNUNET_CRYPTO_EccSignaturePurpose *purpose,
- struct GNUNET_IDENTITY_Signature *sig);
+ GNUNET_IDENTITY_PrivateKey *priv,
+ const struct
+ GNUNET_CRYPTO_EccSignaturePurpose *purpose,
+ struct GNUNET_IDENTITY_Signature *sig);
/**
@@ -534,9 +534,9 @@ GNUNET_IDENTITY_sign_ (const struct
GNUNET_static_assert (((void*) (ps)) == \
((void*) &(ps)->purpose)); \
GNUNET_assert (GNUNET_OK == \
- GNUNET_IDENTITY_private_key_sign_ (priv, \
- &(ps)->purpose, \
- sig)); \
+ GNUNET_IDENTITY_sign_ (priv, \
+ &(ps)->purpose, \
+ sig)); \
} while (0)