commit | 3879b19342d2bc5bfe293eece5c7422bb94cbc5c | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Wed Jan 17 01:55:04 2001 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Jan 17 01:55:04 2001 +0000 |
tree | c738fec0845ec809e06725fa1f0a43b7b11340cf | |
parent | a6166e174eb44625c8ff05ef5aab3147ab4cd1db [diff] [blame] |
Fixed typo in wine_get_unix_file_name().
diff --git a/files/dos_fs.c b/files/dos_fs.c index 2aa9b8b..6860b57 100644 --- a/files/dos_fs.c +++ b/files/dos_fs.c
@@ -1376,7 +1376,7 @@ { 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; }