aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Humphreys <j-humphreys@ti.com>2024-08-02 18:26:41 +0200
committerTom Rini <trini@konsulko.com>2024-08-02 10:41:44 -0600
commitecf62d790f084e23fe76c7541f6bdde8c62bdaf4 (patch)
tree926a3637a4ce15733dcf7b88077effd6735d3fcd
parent70ec02da51c0041c3fc39c01ab0a06c19558d55e (diff)
downloadu-boot-ecf62d790f084e23fe76c7541f6bdde8c62bdaf4.tar.gz
net-lwip: lwIP wget supports user defined port in the uri, so allow it.
Signed-off-by: Jonathan Humphreys <j-humphreys@ti.com> Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
-rw-r--r--net/lwip/wget.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/net/lwip/wget.c b/net/lwip/wget.c
index 65a69fab6e8..bd1aab499d2 100644
--- a/net/lwip/wget.c
+++ b/net/lwip/wget.c
@@ -264,12 +264,6 @@ bool wget_validate_uri(char *uri)
ret = false;
goto out;
}
- s = strchr(authority, ':');
- if (s) {
- log_err("user defined port is not supported\n");
- ret = false;
- goto out;
- }
out:
free(str_copy);