Commit 7ea0f37d 7ea0f37de822399983ec98f901ffae6d1047dbaf by Sergey Poznyakoff

(url_parse0): proto:///file means absolute file name.

1 parent f80544be
......@@ -226,6 +226,12 @@ url_parse0 (mu_url_t u, char *name)
name += 2;
if (name[0] == '/')
{
u->path = name;
return 0;
}
/* Split into LHS and RHS of the '@', and then parse each side. */
u->host = strchr (name, '@');
if (u->host == NULL)
......