* path.cc (symlink_info::case_check): Ignore trailing characters
in paths when comparing case.
This commit is contained in:
@@ -3230,7 +3230,7 @@ symlink_info::case_check (char *path)
|
||||
FindClose (h);
|
||||
|
||||
/* If that part of the component exists, check the case. */
|
||||
if (strcmp (c, data.cFileName))
|
||||
if (strncmp (c, data.cFileName, strlen (data.cFileName)))
|
||||
{
|
||||
case_clash = true;
|
||||
|
||||
|
Reference in New Issue
Block a user