summaryrefslogtreecommitdiff
path: root/lib/urlapi.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-11-04 23:30:48 +0100
committerDaniel Stenberg <daniel@haxx.se>2018-11-06 11:08:52 +0100
commitf08f59aa73bf3156f29290b34e301c9b71a19f3c (patch)
treea1099e13d1cc63db7281d49df49dd56aec692a14 /lib/urlapi.c
parent397664a065abffb7c3445ca9086f917e13719d1f (diff)
downloadcurl-f08f59aa73bf3156f29290b34e301c9b71a19f3c.tar.gz
url: a short host name + port is not a schemebagder/test203-windows-pwd
The function identifying a leading "scheme" part of the URL considered a few letters ending with a colon to be a scheme, making something like "short:80" to become an unknown scheme instead of a short host name and a port number. Extended test 1560 to verify. Also fix test203 to use posix_pwd to make it get the correct path on windows Reported-by: Hagai Auro Fixes #3220 Fixes #3233 Closes #3223 Closes #3235
Diffstat (limited to 'lib/urlapi.c')
-rw-r--r--lib/urlapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/urlapi.c b/lib/urlapi.c
index 18a6076ff..e877dc726 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 == ':') {
+ if((s == ':') && (url[i + 1] == '/')) {
if(buf)
buf[i] = 0;
return TRUE;