From 3879b19342d2bc5bfe293eece5c7422bb94cbc5c Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 17 Jan 2001 01:55:04 +0000 Subject: [PATCH] Fixed typo in wine_get_unix_file_name(). --- files/dos_fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/dos_fs.c b/files/dos_fs.c index 2aa9b8b45ac..6860b57da9c 100644 --- a/files/dos_fs.c +++ b/files/dos_fs.c @@ -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; }