exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit ab96483e01698c5d8800b83e8e8541f914551d55
parent 5f268913ddfac25f8d16c3216bba23535e2bd798
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 14 May 2021 15:47:02 +0200

disable gettext use in secmod code (#6862)

Diffstat:
Msrc/util/crypto_helper_denom.c | 2+-
Msrc/util/crypto_helper_esign.c | 2+-
Msrc/util/taler-exchange-secmod-eddsa.c | 3+++
Msrc/util/taler-exchange-secmod-rsa.c | 3+++
4 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/util/crypto_helper_denom.c b/src/util/crypto_helper_denom.c @@ -535,7 +535,7 @@ TALER_CRYPTO_helper_denom_sign ( buf, sizeof (buf), 0, - &dh->sa, + (const struct sockaddr *) &dh->sa, sizeof (dh->sa)); if (ret < 0) { diff --git a/src/util/crypto_helper_esign.c b/src/util/crypto_helper_esign.c @@ -485,7 +485,7 @@ TALER_CRYPTO_helper_esign_sign_ ( buf, sizeof (buf), 0, - &esh->sa, + (const struct sockaddr *) &esh->sa, sizeof (esh->sa)); if (ret < 0) { diff --git a/src/util/taler-exchange-secmod-eddsa.c b/src/util/taler-exchange-secmod-eddsa.c @@ -32,6 +32,9 @@ * private key. This is done by reference counting (as work is always * assigned and collected by the main thread). */ +#include "taler_config.h" +#define HAVE_USED_CONFIG_H +#undef ENABLE_NLS #include "platform.h" #include "taler_util.h" #include "taler-exchange-secmod-eddsa.h" diff --git a/src/util/taler-exchange-secmod-rsa.c b/src/util/taler-exchange-secmod-rsa.c @@ -32,6 +32,9 @@ * private key. This is done by reference counting (as work is always * assigned and collected by the main thread). */ +#include "taler_config.h" +#define HAVE_USED_CONFIG_H +#undef ENABLE_NLS #include "platform.h" #include "taler_util.h" #include "taler-exchange-secmod-rsa.h"