mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 18:29:18 +02:00
* avoid problems for windows if case of drive letter is different
git-svn-id: trunk@14840 -
This commit is contained in:
parent
75ff11b24f
commit
a989b6c1e6
@ -207,7 +207,7 @@ begin
|
|||||||
if Copy (Pa, 1, PathStart - 2) = Copy (S, 1, PathStart - 2)
|
if Copy (Pa, 1, PathStart - 2) = Copy (S, 1, PathStart - 2)
|
||||||
then
|
then
|
||||||
{$ELSE FPC_FEXPAND_VOLUMES}
|
{$ELSE FPC_FEXPAND_VOLUMES}
|
||||||
if Pa [1] = S [1] then
|
if UpCase(Pa [1]) = UpCase(S [1]) then
|
||||||
{$ENDIF FPC_FEXPAND_VOLUMES}
|
{$ENDIF FPC_FEXPAND_VOLUMES}
|
||||||
begin
|
begin
|
||||||
{ remove ending slash if it already exists }
|
{ remove ending slash if it already exists }
|
||||||
|
Loading…
Reference in New Issue
Block a user