Fixed typo in wine_get_unix_file_name().

oldstable
Alexandre Julliard 2001-01-17 01:55:04 +00:00
parent a6166e174e
commit 3879b19342
1 changed files with 1 additions and 1 deletions

View File

@ -1376,7 +1376,7 @@ BOOL WINAPI wine_get_unix_file_name( LPCSTR dos, LPSTR buffer, DWORD len )
{
BOOL ret;
DOS_FULL_NAME path;
if ((ret = DOSFS_GetFullName( dos, FALSE, &path ))) lstrcpynA( buffer, dos, len );
if ((ret = DOSFS_GetFullName( dos, FALSE, &path ))) lstrcpynA( buffer, path.long_name, len );
return ret;
}