summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-05-09 13:25:10 +0200
committerChristian Grothoff <christian@grothoff.org>2022-05-09 13:25:10 +0200
commit99a844e52e48bb6e8ed63fc737d6ee62b3f0baf6 (patch)
tree15656e1652059f00600f04b19f06c3658855afb3 /src/util
parent06bfbd9150e61a1b076175b22b27be4c88e058f3 (diff)
downloadexchange-99a844e52e48bb6e8ed63fc737d6ee62b3f0baf6.tar.gz
exchange-99a844e52e48bb6e8ed63fc737d6ee62b3f0baf6.tar.bz2
exchange-99a844e52e48bb6e8ed63fc737d6ee62b3f0baf6.zip
check reserve balance after p2p merges
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 c596f8d3f..971e24961 100644
--- a/src/util/payto.c
+++ b/src/util/payto.c
@@ -193,7 +193,7 @@ TALER_payto_validate (const char *payto_uri)
/* This is more strict than RFC 8905, alas we do not need to support messages/instructions/etc.,
and it is generally better to start with a narrow whitelist; we can be more permissive later ...*/
#define ALLOWED_CHARACTERS \
- "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/:&?-.,="
+ "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/:&?-.,=+"
if (NULL == strchr (ALLOWED_CHARACTERS,
(int) payto_uri[i]))
{