Module: wine Branch: master Commit: 890f63a1d84199e1cae6e7a3d7e43b08db5cc27b URL: http://source.winehq.org/git/wine.git/?a=commit;h=890f63a1d84199e1cae6e7a3d7...
Author: Hans Leidekker hans@it.vu.nl Date: Mon Feb 12 15:27:36 2007 +0100
wininet: Fix a test that fails on Windows.
---
dlls/wininet/tests/http.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wininet/tests/http.c b/dlls/wininet/tests/http.c index 664447d..d6e9bb4 100644 --- a/dlls/wininet/tests/http.c +++ b/dlls/wininet/tests/http.c @@ -549,7 +549,7 @@ static void InternetTimeToSystemTimeW_te ret = InternetTimeToSystemTimeW( string, NULL, 0 ); ok( !ret, "InternetTimeToSystemTimeW succeeded (%u)\n", GetLastError() );
- ret = InternetTimeToSystemTimeW( string, &time, 1 ); + ret = InternetTimeToSystemTimeW( string, &time, 0 ); ok( ret, "InternetTimeToSystemTimeW failed (%u)\n", GetLastError() );
ret = InternetTimeToSystemTimeW( string, &time, 0 );