]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/configinfo.c
Backout the input exhaustion change, it loops. Still looking for
[openldap] / servers / slapd / configinfo.c
index 332826ceb09baf02d1be79b7d38180d9053cc1b2..4d85b2b62764c17f89be0c2741433165f2ed821d 100644 (file)
@@ -56,15 +56,10 @@ config_info( Connection *conn, Operation *op )
                attr_merge( e, "database", vals );
        }
 
-       if ( default_referral != NULL ) {
-               strcpy( buf, default_referral );
-               val.bv_val = buf;
-               val.bv_len = strlen( buf );
-               attr_merge( e, "database", vals );
-       }
-
-       send_search_entry( &backends[0], conn, op, e, NULL, 0 );
-       send_ldap_search_result( conn, op, LDAP_SUCCESS, NULL, NULL, 1 );
+       send_search_entry( &backends[0], conn, op, e,
+               NULL, 0, 1, NULL );
+       send_search_result( conn, op, LDAP_SUCCESS,
+               NULL, NULL, NULL, NULL, 1 );
 
        entry_free( e );
 }