From ec11a7b828e4aaab1772a4a2964efee8d505c6d1 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 24 Jun 2008 11:51:07 +0200 Subject: [PATCH] oleaut32/tests: Allow UuidCreate to return RPC_S_UUID_LOCAL_ONLY. --- dlls/oleaut32/tests/typelib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/oleaut32/tests/typelib.c b/dlls/oleaut32/tests/typelib.c index 74a7812f988..3479c184258 100644 --- a/dlls/oleaut32/tests/typelib.c +++ b/dlls/oleaut32/tests/typelib.c @@ -640,7 +640,7 @@ static void test_QueryPathOfRegTypeLib(void) BSTR path; status = UuidCreate(&uid); - ok(!status, "UuidCreate error %08lx\n", status); + ok(!status || status == RPC_S_UUID_LOCAL_ONLY, "UuidCreate error %08lx\n", status); StringFromGUID2(&uid, uid_str, 40); /*trace("GUID: %s\n", wine_dbgstr_w(uid_str));*/