summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-10-22 22:04:35 +0200
committerChristian Grothoff <christian@grothoff.org>2021-10-27 09:23:11 +0200
commit55632b1fbfd5098e3fad6256c0f485cf2a012096 (patch)
treeac978608ddb24e7abb50b2be77d9faaed627457f /src/util
parentdbb812414bd434ac06fa38637f09467115caa444 (diff)
downloadexchange-55632b1fbfd5098e3fad6256c0f485cf2a012096.tar.gz
exchange-55632b1fbfd5098e3fad6256c0f485cf2a012096.tar.bz2
exchange-55632b1fbfd5098e3fad6256c0f485cf2a012096.zip
brutally fixing types in src/include/, creating plenty of FTBFS issues
Diffstat (limited to 'src/util')
-rw-r--r--src/util/Makefile.am1
-rw-r--r--src/util/mhd.c2
-rw-r--r--src/util/secmod_signatures.c4
3 files changed, 4 insertions, 3 deletions
diff --git a/src/util/Makefile.am b/src/util/Makefile.am
index e94c64a35..c8455dd43 100644
--- a/src/util/Makefile.am
+++ b/src/util/Makefile.am
@@ -69,6 +69,7 @@ libtalerutil_la_SOURCES = \
crypto_helper_denom.c \
crypto_helper_esign.c \
crypto_wire.c \
+ denom.c \
getopt.c \
lang.c \
iban.c \
diff --git a/src/util/mhd.c b/src/util/mhd.c
index 9684f979f..2f262340f 100644
--- a/src/util/mhd.c
+++ b/src/util/mhd.c
@@ -31,7 +31,7 @@
* #GNUNET_NO if the MHD connection is using http,
* #GNUNET_SYSERR if the connection type couldn't be determined
*/
-int
+enum GNUNET_GenericReturnValue
TALER_mhd_is_https (struct MHD_Connection *connection)
{
const union MHD_ConnectionInfo *ci;
diff --git a/src/util/secmod_signatures.c b/src/util/secmod_signatures.c
index 3df68861d..875f3eb5d 100644
--- a/src/util/secmod_signatures.c
+++ b/src/util/secmod_signatures.c
@@ -70,7 +70,7 @@ TALER_exchange_secmod_eddsa_verify (
void
-TALER_exchange_secmod_rsa_sign (
+TALER_exchange_secmod_denom_sign (
const struct GNUNET_HashCode *h_denom_pub,
const char *section_name,
struct GNUNET_TIME_Absolute start_sign,
@@ -97,7 +97,7 @@ TALER_exchange_secmod_rsa_sign (
enum GNUNET_GenericReturnValue
-TALER_exchange_secmod_rsa_verify (
+TALER_exchange_secmod_denom_verify (
const struct GNUNET_HashCode *h_denom_pub,
const char *section_name,
struct GNUNET_TIME_Absolute start_sign,