diff options
Diffstat (limited to 'src/netops.c')
-rw-r--r-- | src/netops.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/netops.c b/src/netops.c index 0bf3a8f13..d2acdb240 100644 --- a/src/netops.c +++ b/src/netops.c @@ -674,7 +674,8 @@ int gitno_extract_url_parts( * ==> [user[:pass]@]hostname.tld[:port]/resource */ - /* Check for user and maybe password */ + /* Check for user and maybe password. Note that this deviates from RFC-1738 + * in that it allows non-encoded colons in the password field. */ at = strchr(url, '@'); if (at) { colon = strchr(url, ':'); @@ -695,7 +696,7 @@ int gitno_extract_url_parts( colon = strchr(url, ':'); if (!slash || (colon && (slash < colon))) { - giterr_set(GITERR_NET, "Malformed URL"); + giterr_set(GITERR_NET, "Malformed URL: %s", url); return GIT_EINVALIDSPEC; } |