gnunet-svn
[Top][All Lists]
Advanced

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

[taler-donau] branch master updated: -fix type


From: gnunet
Subject: [taler-donau] branch master updated: -fix type
Date: Wed, 13 Mar 2024 11:28:54 +0100

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

grothoff pushed a commit to branch master
in repository donau.

The following commit(s) were added to refs/heads/master by this push:
     new 79adbf2  -fix type
79adbf2 is described below

commit 79adbf2aa0fa6f8bcf30692f925568868efc914e
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed Mar 13 11:28:52 2024 +0100

    -fix type
---
 src/donau/donau-httpd_keys.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/src/donau/donau-httpd_keys.c b/src/donau/donau-httpd_keys.c
index 3efae3e..39f7c9c 100644
--- a/src/donau/donau-httpd_keys.c
+++ b/src/donau/donau-httpd_keys.c
@@ -427,12 +427,12 @@ struct HelperState
   /**
    * Handle for the donation_unit/RSA helper.
    */
-  struct DONAU_CRYPTO_RsaDonationUnitHelper*rsadh;
+  struct DONAU_CRYPTO_RsaDenominationUnitHelper *rsadh;
 
   /**
    * Handle for the donation_unit/CS helper.
    */
-  struct TALER_CRYPTO_CsDonationUnitHelper*csdh;
+  struct TALER_CRYPTO_CsDenominationUnitHelper *csdh;
 
   /**
    * Map from H(donation_unit_pub) to `struct HelperDonationUnit` entries.
@@ -906,7 +906,8 @@ finish_keys_response (struct DH_KeyStateHandle *ksh)
 
     donation_units_by_group =
       GNUNET_CONTAINER_multihashmap_create (1024,
-                                            GNUNET_NO /* NO, because keys are 
only on the stack */);
+                                            GNUNET_NO /* NO, because keys are 
only on the stack */
+                                            );
     /* heap = max heap, sorted by start time */
     while (NULL != (dk = GNUNET_CONTAINER_heap_remove_root (heap)))
     {
@@ -1004,7 +1005,8 @@ finish_keys_response (struct DH_KeyStateHandle *ksh)
           bool private_key_lost;
 
           hd = GNUNET_CONTAINER_multihashmap_get (ksh->helpers->donation_unit,
-                                                  
&dk->h_donation_unit_pub.hash);
+                                                  
&dk->h_donation_unit_pub.hash)
+          ;
           private_key_lost
             = (NULL == hd) ||
               GNUNET_TIME_absolute_is_past (
@@ -1806,7 +1808,8 @@ build_key_state (struct HelperState *hs)
   ksh->donation_unit_map = GNUNET_CONTAINER_multihashmap_create (1024,
                                                                  true);
   ksh->signkey_map = GNUNET_CONTAINER_multipeermap_create (32,
-                                                           false /* MUST be 
false! */);
+                                                           false /* MUST be 
false! */
+                                                           );
 
   /* NOTE: fetches master-signed signkeys, but ALSO those that were revoked! */
   GNUNET_break (GNUNET_OK ==

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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