diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-11-05 09:24:53 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-11-05 09:24:59 +0100 |
commit | d9abebc7ee2a4cfde42c790ae97a2d8c6911f3a9 (patch) | |
tree | c3e4feb132aadbab2da7fd762a7dc3be60d9b915 | |
parent | 66dc1570db7dc80b3f6b23556ef65186a0a0ea8d (diff) | |
download | curl-d9abebc7ee2a4cfde42c790ae97a2d8c6911f3a9.tar.gz |
Revert "url: a short host name + port is not a scheme"
This reverts commit 226cfa8264cd979eff3fd52c0f3585ef095e7cf2.
This commit caused test failures on appveyor/windows. Work on fixing them is
in #3235.
-rw-r--r-- | lib/urlapi.c | 2 | ||||
-rw-r--r-- | tests/libtest/lib1560.c | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/lib/urlapi.c b/lib/urlapi.c index e877dc726..18a6076ff 100644 --- a/lib/urlapi.c +++ b/lib/urlapi.c @@ -238,7 +238,7 @@ bool Curl_is_absolute_url(const char *url, char *buf, size_t buflen) #endif for(i = 0; i < buflen && url[i]; ++i) { char s = url[i]; - if((s == ':') && (url[i + 1] == '/')) { + if(s == ':') { if(buf) buf[i] = 0; return TRUE; diff --git a/tests/libtest/lib1560.c b/tests/libtest/lib1560.c index 6557e0567..57469a906 100644 --- a/tests/libtest/lib1560.c +++ b/tests/libtest/lib1560.c @@ -128,9 +128,6 @@ struct querycase { }; static struct testcase get_parts_list[] ={ - {"boing:80", - "https | [11] | [12] | [13] | boing | 80 | / | [16] | [17]", - CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://[fd00:a41::50]:8080", "http | [11] | [12] | [13] | [fd00:a41::50] | 8080 | / | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, |