diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-01-30 01:38:04 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-01-30 01:38:04 +0100 |
commit | e318edb5e594e3299acb4ba4b7bca0440cfde217 (patch) | |
tree | 0048a8f02bd7eb825680f47d0a8eea7a0afcc053 /src/wire/plugin_wire_template.c | |
parent | d126b166241e36a33884bc799190c708226ddb7e (diff) |
use url instead of uri consistently
Diffstat (limited to 'src/wire/plugin_wire_template.c')
-rw-r--r-- | src/wire/plugin_wire_template.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/wire/plugin_wire_template.c b/src/wire/plugin_wire_template.c index c4eefd194..06e70c2a8 100644 --- a/src/wire/plugin_wire_template.c +++ b/src/wire/plugin_wire_template.c @@ -33,9 +33,9 @@ struct TemplateClosure { /** - * URI of the bank for sending funds to the bank. + * URL of the bank for sending funds to the bank. */ - char *bank_uri; + char *bank_url; /** * Which currency do we support? @@ -285,12 +285,12 @@ libtaler_plugin_wire_template_init (void *cls) if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "exchange-wire-template", - "bank_uri", - &tc->bank_uri)) + "bank_url", + &tc->bank_url)) { GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, "exchange-wire-template", - "bank_uri"); + "bank_url"); GNUNET_free (tc); return NULL; } @@ -303,7 +303,7 @@ libtaler_plugin_wire_template_init (void *cls) GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, "taler", "CURRENCY"); - GNUNET_free (tc->bank_uri); + GNUNET_free (tc->bank_url); GNUNET_free (tc); return NULL; } @@ -336,7 +336,7 @@ libtaler_plugin_wire_template_done (void *cls) struct TALER_WIRE_Plugin *plugin = cls; struct TemplateClosure *tc = plugin->cls; - GNUNET_free (tc->bank_uri); + GNUNET_free (tc->bank_url); GNUNET_free (tc->currency); GNUNET_free (tc); GNUNET_free (plugin); |