diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-08 10:04:39 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-08 10:04:39 +0100 |
commit | 92d21ca315cf036d54a0ac83178ea79d7ebe7fd6 (patch) | |
tree | b1606546d102b601481b60b6ec45340f0fa64e09 /src/wire | |
parent | c0702a6f0a2f1d837892417a5a4292ad18f3e453 (diff) |
remove ebics (#6038)
Diffstat (limited to 'src/wire')
-rw-r--r-- | src/wire/wire_helper.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/wire/wire_helper.c b/src/wire/wire_helper.c index 76336f7d0..e62539832 100644 --- a/src/wire/wire_helper.c +++ b/src/wire/wire_helper.c @@ -44,7 +44,7 @@ struct ConversionTable const char *method; /** - * Plugin name, e.g. 'ebics', 'taler_bank', .. + * Plugin name, e.g. 'taler_bank', .. */ const char *plugin_name; }; @@ -78,6 +78,10 @@ TALER_WIRE_payto_get_method (const char *payto_url) /** * Get the plugin name from the payment method. * + * FIXME: this is ugly, would be better to have + * a way to iterate over all plugins and interrogate + * them as to what wire method(s) they support! + * * @param method the method implemented by the plugin (for * simplicity, we assume 1 method is implemented by 1 plugin). * @return the plugin name, NULL if not found. @@ -87,7 +91,7 @@ TALER_WIRE_get_plugin_from_method (const char *method) { static const struct ConversionTable ct[] = { {"x-taler-bank", "taler_bank"}, - {"iban", "ebics"}, + {"iban", "taler_bank"}, {NULL, NULL} }; |