From: Alex Henrie alexhenrie24@gmail.com
Fixes a testbot failure. --- dlls/rpcrt4/tests/rpc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dlls/rpcrt4/tests/rpc.c b/dlls/rpcrt4/tests/rpc.c index a4653fd603f..3f6dd8745b9 100644 --- a/dlls/rpcrt4/tests/rpc.c +++ b/dlls/rpcrt4/tests/rpc.c @@ -188,7 +188,8 @@ static void test_DceErrorInqTextA(void) * 3814 is generally quite a long message */ ok ((DceErrorInqTextA (3814, (unsigned char*)buffer) == RPC_S_OK && - strcmp (buffer, bufferInvalid) == 0), + (strcmp (buffer, bufferInvalid) == 0 || + broken (buffer[0] == '?') /* win10 21H1 locale mix */)), "DceErrorInqTextA(deviation...)\n"); } else