exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 2504699b3b79ed7203d7413d8bbc91ffd28b5481
parent e799338e61805e9a05f3ee4aef58cc2d51e8cba8
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 18 Feb 2024 12:29:21 +0100

-bad idea

Diffstat:
Msrc/util/url.c | 19-------------------
1 file changed, 0 insertions(+), 19 deletions(-)

diff --git a/src/util/url.c b/src/util/url.c @@ -222,25 +222,6 @@ TALER_url_join (const char *base_url, "Empty base URL specified\n"); return NULL; } - if (NULL != strchr (base_url, - '?')) - { - /* query parameters not supported */ - GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "Query parameters not allowed in base URL `%s'\n", - base_url); - return NULL; - } - if (NULL != strchr (path, - '?')) - { - /* query parameters not supported */ - GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "Query parameters not allowed in path `%s'\n", - path); - return NULL; - } - if ('\0' != path[0]) { if ('/' != base_url[strlen (base_url) - 1])