secur32: Remove test for sft->Reserved8 field.

This seems to be set on Win98.
This commit is contained in:
Kai Blin 2008-05-05 20:17:53 +02:00 committed by Alexandre Julliard
parent 2d50b5cef5
commit 2e04c18cf4
1 changed files with 0 additions and 2 deletions

View File

@ -101,7 +101,6 @@ static void test_InitSecurityInterface(void)
ok(sftA->Reserved3 != NULL, "Reserved3 should not be NULL in security function table\n");
todo_wine
ok(sftA->Reserved4 != NULL, "Reserved4 should not be NULL in security function table\n");
ok(!sftA->Reserved8, "Reserved8 should be NULL instead of %p in security function table\n", sftA->Reserved8);
if (!pInitSecurityInterfaceW)
{
@ -117,7 +116,6 @@ static void test_InitSecurityInterface(void)
ok(sftW->Reserved3 != NULL, "Reserved3 should note be NULL in security function table\n");
todo_wine
ok(sftW->Reserved4 != NULL, "Reserved4 should not be NULL in security function table\n");
ok(!sftW->Reserved8, "Reserved8 should be NULL instead of %p in security function table\n", sftW->Reserved8);
}
START_TEST(secur32)