]> git.sur5r.net Git - openldap/commitdiff
ITS#5893 less verbose on expected errors, exit on ServerDown
authorHoward Chu <hyc@openldap.org>
Tue, 10 Feb 2009 11:46:47 +0000 (11:46 +0000)
committerHoward Chu <hyc@openldap.org>
Tue, 10 Feb 2009 11:46:47 +0000 (11:46 +0000)
tests/progs/slapd-bind.c

index 0f73fd6ca4ce812989236032ff48d6971156f2b5..8ccf0259f5464add85f760cf2e0c7d2dfd59d594 100644 (file)
@@ -249,13 +249,17 @@ main( int argc, char **argv )
        uri = tester_uri( uri, host, port );
 
        for ( i = 0; i < outerloops; i++ ) {
+               int rc;
+
                if ( base != NULL ) {
-                       do_base( uri, dn, &pass, base, filter, pwattr, loops,
+                       rc = do_base( uri, dn, &pass, base, filter, pwattr, loops,
                                force, chaserefs, noinit, delay, -1, NULL );
                } else {
-                       do_bind( uri, dn, &pass, loops,
+                       rc = do_bind( uri, dn, &pass, loops,
                                force, chaserefs, noinit, NULL, -1, NULL );
                }
+               if ( rc == LDAP_SERVER_DOWN )
+                       break;
        }
 
        exit( EXIT_SUCCESS );
@@ -344,7 +348,7 @@ do_bind( char *uri, char *dn, struct berval *pass, int maxloop,
                        /* if ignore.. */
                        if ( first ) {
                                /* only log if first occurrence */
-                               if ( force < 2 || first == 1 ) {
+                               if ( first == 1 ) {
                                        tester_ldap_error( ld, "ldap_sasl_bind_s", NULL );
                                }
                                rc = LDAP_SUCCESS;