summaryrefslogtreecommitdiff
path: root/src/backend/merchant.c
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2015-10-26 21:06:44 +0100
committerMarcello Stanisci <marcello.stanisci@inria.fr>2015-10-26 21:06:44 +0100
commit37cc93e1511c0072b6a801d3071932114364392d (patch)
tree07738a1275f00c7bf484ff78fde8b18965130262 /src/backend/merchant.c
parent125c9ec8da551943965e7405b78675cb8013a31b (diff)
downloadmerchant-37cc93e1511c0072b6a801d3071932114364392d.tar.gz
merchant-37cc93e1511c0072b6a801d3071932114364392d.tar.bz2
merchant-37cc93e1511c0072b6a801d3071932114364392d.zip
fixing macro notation for using arguments as string constants
Diffstat (limited to 'src/backend/merchant.c')
-rw-r--r--src/backend/merchant.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/backend/merchant.c b/src/backend/merchant.c
index 31223aeb..47ccdc48 100644
--- a/src/backend/merchant.c
+++ b/src/backend/merchant.c
@@ -111,36 +111,28 @@ TALER_MERCHANT_parse_mints (const struct GNUNET_CONFIGURATION_Handle *cfg,
GNUNET_CRYPTO_eddsa_public_key_from_string (mint_pubkey_enc,
strlen (mint_pubkey_enc),
&mint.pubkey));
-
EXITIF (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_string (cfg,
mint_section,
"COUNTRY",
&mint_country));
-
EXITIF (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_string (cfg,
mint_section,
"CITY",
&mint_city));
-
-
if (GNUNET_OK ==
GNUNET_CONFIGURATION_get_value_string (cfg,
mint_section,
"STATE",
&mint_state))
mint.state = mint_state;
-
-
if (GNUNET_OK ==
GNUNET_CONFIGURATION_get_value_string (cfg,
mint_section,
"REGION",
&mint_region))
mint.region = mint_region;
-
-
if (GNUNET_OK ==
GNUNET_CONFIGURATION_get_value_string (cfg,
mint_section,