commit 3fbcfbee84cf48d483d7bb48b2a452f065cbe008
parent bf19eaf374f32100192cba30cb670b693b4e7aa0
Author: Sebastian <sebasjm@taler-systems.com>
Date: Thu, 7 May 2026 09:56:35 -0300
fix broken build: update in crypto helper
Diffstat:
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1,12 +1,15 @@
Makefile
+Makefile.in
autom4te.cache/
build-aux/
config.log
configure~
taler_config.h.in~
+donau_config.h.in~
*.md5~
*.unc-backup~
*.orig
+/m4/
src/donau-tools/taler-donau-dbinit
src/donau/donau-httpd
src/util/donau-config
diff --git a/src/donau/donau-httpd_get-keys.c b/src/donau/donau-httpd_get-keys.c
@@ -1445,10 +1445,11 @@ DH_keys_donation_unit_cs_r_pub (
.h_cs = (const struct TALER_CsPubHashP *) &dk->h_donation_unit_pub,
.nonce = nonce
};
- return TALER_CRYPTO_helper_cs_r_derive (csdh,
- &cdr,
- false,
- r_pub);
+ return TALER_CRYPTO_helper_cs_r_batch_derive (csdh,
+ 1,
+ &cdr,
+ false,
+ r_pub);
}
}