summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/backend/taler-merchant-httpd_auditors.c2
-rw-r--r--src/backend/taler-merchant-httpd_mints.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/taler-merchant-httpd_auditors.c b/src/backend/taler-merchant-httpd_auditors.c
index 7efc7078..84558ed0 100644
--- a/src/backend/taler-merchant-httpd_auditors.c
+++ b/src/backend/taler-merchant-httpd_auditors.c
@@ -122,7 +122,7 @@ static void
parse_auditors (void *cls,
const char *section)
{
- const struct GNUNET_CONFIGURATION_Handle *cfg = cfg;
+ const struct GNUNET_CONFIGURATION_Handle *cfg = cls;
char *pks;
struct Auditor auditor;
diff --git a/src/backend/taler-merchant-httpd_mints.c b/src/backend/taler-merchant-httpd_mints.c
index caf39774..e93419cd 100644
--- a/src/backend/taler-merchant-httpd_mints.c
+++ b/src/backend/taler-merchant-httpd_mints.c
@@ -408,7 +408,7 @@ static void
parse_mints (void *cls,
const char *section)
{
- const struct GNUNET_CONFIGURATION_Handle *cfg = cfg;
+ const struct GNUNET_CONFIGURATION_Handle *cfg = cls;
char *uri;
char *mks;
struct Mint *mint;