donau

Donation authority for GNU Taler (experimental)
Log | Files | Refs | Submodules | README | LICENSE

commit 407545f04caa21247e5e4bcac556e4fc36e627b2
parent b534f6e769d979c3a4297360d7c39ebd7fe4d032
Author: Casaburi Johannes <johannes.casaburi@students.bfh.ch>
Date:   Tue,  9 Jan 2024 00:34:11 +0100

fix type

Diffstat:
Msrc/donau/donau-httpd_post-charity.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/donau/donau-httpd_post-charity.c b/src/donau/donau-httpd_post-charity.c @@ -103,10 +103,10 @@ DH_handler_charity_post ( struct InsertCharityContext icc; struct GNUNET_JSON_Specification spec[] = { - GNUNET_JSON_spec_array_const ("charity_url", - &icc.charity_url), - GNUNET_JSON_spec_array_const ("charity_name", - &icc.charity_name), + GNUNET_JSON_spec_string ("charity_url", + &icc.charity_url), + GNUNET_JSON_spec_string ("charity_name", + &icc.charity_name), GNUNET_JSON_spec_end () };