ntdll: Treat '>' the same as '?' in match_filename().

They differ in strange ways, as the tests show, but the basic behaviour of '>' is similar to '?'.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=22635
Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 690a069918)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
Zebediah Figura 2021-02-02 18:17:15 -06:00 committed by Michael Stefaniuc
parent e6819b0f43
commit 82b079cae4
1 changed files with 1 additions and 0 deletions

View File

@ -1342,6 +1342,7 @@ static BOOLEAN match_filename( const WCHAR *name, int length, const UNICODE_STRI
next_to_retry = name;
break;
case '?':
case '>':
mask++;
name++;
break;