summaryrefslogtreecommitdiff
path: root/src/wire/wire_helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wire/wire_helper.c')
-rw-r--r--src/wire/wire_helper.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wire/wire_helper.c b/src/wire/wire_helper.c
index 13e9bd79c..0ce8d599a 100644
--- a/src/wire/wire_helper.c
+++ b/src/wire/wire_helper.c
@@ -39,7 +39,7 @@ struct ConversionTable
{
/**
- * Wire method (e.g. 'sepa', 'x-taler-bank', ..)
+ * Wire method (e.g. 'iban', 'x-taler-bank', ..)
*/
const char *method;
@@ -86,17 +86,17 @@ const char *
TALER_WIRE_get_plugin_from_method (const char *method)
{
static const struct ConversionTable ct[] = {
- {"x-taler-bank", "taler_bank"},
- {"sepa", "ebics"},
+ {"x-taler-bank", "taler_bank"},
+ {"iban", "ebics"},
{NULL, NULL}
};
-
+
for (unsigned int i=0;
NULL != ct[i].method;
i++)
{
if (0 == strcmp (method,
- ct[i].method))
+ ct[i].method))
return ct[i].plugin_name;
}