Commit 08400e9d authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

wldap32/tests: Fix skipping if server is unavailable.

parent c4c03180
......@@ -93,7 +93,7 @@ static void test_ldap_search_extW( LDAP *ld )
timelimit = 20;
ret = ldap_search_extW( ld, base, LDAP_SCOPE_SUBTREE, filter, NULL, 0, NULL, NULL, timelimit, 0, &message );
if (ret == LDAP_SERVER_DOWN)
if (ret == LDAP_SERVER_DOWN || ret == LDAP_UNAVAILABLE)
{
skip("test server can't be reached\n");
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment