Detlef Riekenberg : urlmon/tests: Fix a typo in an ok message.
Module: wine Branch: master Commit: 0baa711b0bf0a571863f3958c20a6f489ce02e26 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0baa711b0bf0a571863f3958c2... Author: Detlef Riekenberg <wine.dev(a)web.de> Date: Mon Jun 15 21:07:54 2009 +0200 urlmon/tests: Fix a typo in an ok message. --- dlls/urlmon/tests/sec_mgr.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/urlmon/tests/sec_mgr.c b/dlls/urlmon/tests/sec_mgr.c index 08051f6..f90f5a5 100644 --- a/dlls/urlmon/tests/sec_mgr.c +++ b/dlls/urlmon/tests/sec_mgr.c @@ -251,7 +251,7 @@ static void test_special_url_action(IInternetSecurityManager *secmgr, IInternetZ hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 3, action, (BYTE*)&policy, sizeof(DWORD), URLZONEREG_DEFAULT); ok(hres == S_OK, "GetZoneActionPolicy failed: %08x\n", hres); - ok(policy == URLPOLICY_DISALLOW, "(%x) policy=%x, expected URLPOLIVY_DISALLOW\n", action, policy); + ok(policy == URLPOLICY_DISALLOW, "(%x) policy=%x, expected URLPOLICY_DISALLOW\n", action, policy); policy = 0xdeadbeef; hres = IInternetSecurityManager_ProcessUrlAction(secmgr, url1, action, (BYTE*)&policy,
participants (1)
-
Alexandre Julliard