diff options
author | Florian Dold <florian@dold.me> | 2022-08-16 13:55:17 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-08-16 13:55:17 +0200 |
commit | 1e2fdea5a977a9fdbb7bcc0632d9fb1c8ef82987 (patch) | |
tree | e97906b94f01b0723d3ad502602b0ff52dca0e55 /src/util | |
parent | ab7266fc1c50ec9807f5d7278f0458efa19b24f8 (diff) |
do not use illegal '+' in payment target type
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/payto.c | 2 |
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; |