diff options
author | Jonathan Humphreys <j-humphreys@ti.com> | 2024-08-02 18:26:41 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-02 10:41:44 -0600 |
commit | ecf62d790f084e23fe76c7541f6bdde8c62bdaf4 (patch) | |
tree | 926a3637a4ce15733dcf7b88077effd6735d3fcd | |
parent | 70ec02da51c0041c3fc39c01ab0a06c19558d55e (diff) | |
download | u-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.c | 6 |
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); |