diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-02-21 14:44:31 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-02-21 14:44:31 +0100 |
commit | 7da69142b4d39681a74b9654c5dec1cbc8b9b24b (patch) | |
tree | c63faf3e8c90ee33441dd993f35feb01e378fb21 /src/exchange | |
parent | 95bd24916ed7baa7a6059c2a788e904bb5166606 (diff) |
-misc minor bugfixes
Diffstat (limited to 'src/exchange')
-rw-r--r-- | src/exchange/taler-exchange-httpd_extensions.c | 9 | ||||
-rw-r--r-- | src/exchange/taler-exchange-httpd_management_partners.c | 2 |
2 files changed, 5 insertions, 6 deletions
diff --git a/src/exchange/taler-exchange-httpd_extensions.c b/src/exchange/taler-exchange-httpd_extensions.c index ecced1fd..48c3f4a9 100644 --- a/src/exchange/taler-exchange-httpd_extensions.c +++ b/src/exchange/taler-exchange-httpd_extensions.c @@ -150,12 +150,11 @@ extension_update_event_cb (void *cls, { TEH_age_restriction_enabled = true; TEH_age_restriction_config = *conf; + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "[age restriction] DB event has changed the config to %s with mask: %s\n", + TEH_age_restriction_enabled ? "enabled": "DISABLED", + TALER_age_mask_to_string (&conf->mask)); } - GNUNET_log (GNUNET_ERROR_TYPE_INFO, - "[age restriction] DB event has changed the config to %s with mask: %s\n", - TEH_age_restriction_enabled ? "enabled": "DISABLED", - TALER_age_mask_to_string (&conf->mask)); - } // Finally, call TEH_keys_update_states in order to refresh the cached diff --git a/src/exchange/taler-exchange-httpd_management_partners.c b/src/exchange/taler-exchange-httpd_management_partners.c index 1c0d4a9a..c63192c6 100644 --- a/src/exchange/taler-exchange-httpd_management_partners.c +++ b/src/exchange/taler-exchange-httpd_management_partners.c @@ -56,7 +56,7 @@ TEH_handler_management_partners ( GNUNET_JSON_spec_timestamp ("start_date", &start_date), GNUNET_JSON_spec_timestamp ("end_date", - &start_date), + &end_date), GNUNET_JSON_spec_relative_time ("wad_frequency", &wad_frequency), GNUNET_JSON_spec_end () |