secur32/tests: make sure a return value is used (LLVM/Clang)

Austin English austinenglish at gmail.com
Tue Feb 8 18:04:23 CST 2011


Seems to be some unrelated failures on WTB when the test is cross
compiled for NT4.

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/secur32/tests/ntlm.c b/dlls/secur32/tests/ntlm.c
index 027e094..ddc9462 100644
--- a/dlls/secur32/tests/ntlm.c
+++ b/dlls/secur32/tests/ntlm.c
@@ -968,6 +968,7 @@ static void testSignSeal(void)
     }
 
     sec_status = setupFakeServer(&server, sec_pkg_name);
+    ok(sec_status == SEC_E_OK, "setupFakeServer returned %s\n", getSecError(sec_status));
 
     while(client_stat == SEC_I_CONTINUE_NEEDED && server_stat == SEC_I_CONTINUE_NEEDED)
     {


More information about the wine-patches mailing list