diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-02-18 12:29:21 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-02-18 12:29:21 +0100 |
commit | 2504699b3b79ed7203d7413d8bbc91ffd28b5481 (patch) | |
tree | 35ec1c6ab5f72056e0d39a7304d6a9d11b01e83f /src/util | |
parent | e799338e61805e9a05f3ee4aef58cc2d51e8cba8 (diff) |
-bad idea
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/url.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/util/url.c b/src/util/url.c index 593aa9b54..bf59ba6ec 100644 --- 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]) |