summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-08-16 13:55:17 +0200
committerFlorian Dold <florian@dold.me>2022-08-16 13:55:17 +0200
commit1e2fdea5a977a9fdbb7bcc0632d9fb1c8ef82987 (patch)
treee97906b94f01b0723d3ad502602b0ff52dca0e55 /src/util
parentab7266fc1c50ec9807f5d7278f0458efa19b24f8 (diff)
downloadexchange-1e2fdea5a977a9fdbb7bcc0632d9fb1c8ef82987.tar.gz
exchange-1e2fdea5a977a9fdbb7bcc0632d9fb1c8ef82987.tar.bz2
exchange-1e2fdea5a977a9fdbb7bcc0632d9fb1c8ef82987.zip
do not use illegal '+' in payment target type
Diffstat (limited to 'src/util')
-rw-r--r--src/util/payto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/payto.c b/src/util/payto.c
index 363545c96..81664b1df 100644
--- a/src/util/payto.c
+++ b/src/util/payto.c
@@ -310,7 +310,7 @@ TALER_reserve_make_payto (const char *exchange_url,
/* exchange_url includes trailing '/' */
GNUNET_asprintf (&reserve_url,
"payto://%s/%s%s",
- is_http ? "taler-reserve+http" : "taler-reserve",
+ is_http ? "taler-reserve-http" : "taler-reserve",
exchange_url,
pub_str);
return reserve_url;