ChangeSet ID: 21326 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard(a)winehq.org 2005/11/18 06:06:57 Modified files: dlls/kernel : vxd.c Log message: Dmitry Timoshkov <dmitry(a)codeweavers.com> Use case insensitive comparison to check file extensions. Patch: http://cvs.winehq.org/patch.py?id=21326 Old revision New revision Changes Path 1.21 1.22 +1 -1 wine/dlls/kernel/vxd.c Index: wine/dlls/kernel/vxd.c diff -u -p wine/dlls/kernel/vxd.c:1.21 wine/dlls/kernel/vxd.c:1.22 --- wine/dlls/kernel/vxd.c:1.21 18 Nov 2005 12: 6:57 -0000 +++ wine/dlls/kernel/vxd.c 18 Nov 2005 12: 6:57 -0000 @@ -201,7 +201,7 @@ HANDLE VXD_Open( LPCWSTR filenameW, DWOR strlwrW( name ); p = strchrW( name, '.' ); if (!p) strcatW( name, dotVxDW ); - else if (strcmpW( p, dotVxDW )) /* existing extension has to be .vxd */ + else if (strcmpiW( p, dotVxDW )) /* existing extension has to be .vxd */ { SetLastError( ERROR_FILE_NOT_FOUND ); return 0;
participants (1)
-
Alexandre Julliard