Skip to content
Snippets Groups Projects
Commit 497cc6bf authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Samuel Listopad fixed -E to support "C:/path" (with forward slash) as well.

parent d5be114c
No related branches found
No related tags found
No related merge requests found
......@@ -1756,7 +1756,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
#ifdef WIN32
if(ptr &&
(ptr == &nextarg[1]) &&
(nextarg[2] == '\\') &&
(nextarg[2] == '\\' || nextarg[2] == '/') &&
(isalpha((int)nextarg[0])) )
/* colon in the second column, followed by a backslash, and the
first character is an alphabetic letter:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment