]> git.sur5r.net Git - openldap/commitdiff
objectclass=* -> NULL
authorKurt Zeilenga <kurt@openldap.org>
Wed, 12 Apr 2000 08:31:32 +0000 (08:31 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 12 Apr 2000 08:31:32 +0000 (08:31 +0000)
tests/progs/slapd-read.c

index 6fa0b905b6a1a7c763668442c68745e956fe59dc..4709610a071b2a1d06f3b811c1636d9b653dc5e2 100644 (file)
@@ -86,8 +86,7 @@ do_read( char *host, int port, char *entry, int maxloop )
 {
        LDAP    *ld;
        int     i;
-       char    *attrs[] = { "cn", "sn", NULL };
-       char    *filter = "(objectclass=*)";
+       char    *attrs[] = { "1.1", NULL };
        pid_t   pid = getpid();
 
        if (( ld = ldap_init( host, port )) == NULL ) {
@@ -109,7 +108,7 @@ do_read( char *host, int port, char *entry, int maxloop )
                int         rc;
 
                if (( rc = ldap_search_s( ld, entry, LDAP_SCOPE_BASE,
-                               filter, attrs, 0, &res )) != LDAP_SUCCESS ) {
+                               NULL, attrs, 1, &res )) != LDAP_SUCCESS ) {
 
                        ldap_perror( ld, "ldap_read" );
                        if ( rc != LDAP_NO_SUCH_OBJECT ) break;