diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-12-19 20:43:41 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-12-19 20:43:41 +0100 |
commit | 2d6303c698a277c831938c31a029661758ac397c (patch) | |
tree | 5e4f85400259921559cbce086ea5d6ddfa01544d /src/util | |
parent | bd44a3ee4cdf05ead052318e95a3146c1b541fbc (diff) |
avoid generating URLs with // in them
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/wireformats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/wireformats.c b/src/util/wireformats.c index 4e9281899..dab7fb926 100644 --- a/src/util/wireformats.c +++ b/src/util/wireformats.c @@ -334,7 +334,7 @@ validate_sepa (const json_t *wire) "s:s," /* name: beneficiary name */ "s:s," /* BIC: beneficiary bank's BIC */ "s:i," /* r: random 64-bit integer nounce */ - "s?s" /* address: address of the beneficiary */ + "s:s" /* address: address of the beneficiary */ "}", "type", &type, "IBAN", &iban, |