gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnunet] branch master updated: const


From: gnunet
Subject: [gnunet] branch master updated: const
Date: Tue, 07 Apr 2020 17:48:07 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 90d63f824 const
90d63f824 is described below

commit 90d63f8249736f9717ca0467d4e8fb9d3d8b48b4
Author: Christian Grothoff <address@hidden>
AuthorDate: Tue Apr 7 17:43:34 2020 +0200

    const
---
 src/util/crypto_ecc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/util/crypto_ecc.c b/src/util/crypto_ecc.c
index 237062eb7..fcc8efa2c 100644
--- a/src/util/crypto_ecc.c
+++ b/src/util/crypto_ecc.c
@@ -847,9 +847,9 @@ GNUNET_CRYPTO_eddsa_verify (
   const struct GNUNET_CRYPTO_EddsaSignature *sig,
   const struct GNUNET_CRYPTO_EddsaPublicKey *pub)
 {
-  unsigned char *m = (void *) validate;
+  const unsigned char *m = (const void *) validate;
   size_t mlen = ntohl (validate->size);
-  unsigned char *s = (void *) sig;
+  const unsigned char *s = (const void *) sig;
 
   int res;
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]