]> git.sur5r.net Git - openldap/commitdiff
no need for next control
authorPierangelo Masarati <ando@openldap.org>
Tue, 4 Jan 2011 16:17:24 +0000 (16:17 +0000)
committerPierangelo Masarati <ando@openldap.org>
Tue, 4 Jan 2011 16:17:24 +0000 (16:17 +0000)
servers/slapd/back-meta/search.c

index 2c958c719004931f69ba9117266976fbcef8d6d8..09e94a255e7db83af74703a2b34751209d133749 100644 (file)
@@ -622,13 +622,13 @@ meta_back_search_start(
 #ifdef SLAPD_META_CLIENT_PR
        save_ctrls = op->o_ctrls;
        {
-               LDAPControl *pr_c = NULL, **next_c = NULL;
+               LDAPControl *pr_c = NULL;
                int i = 0, nc = 0;
 
                if ( save_ctrls ) {
                        for ( ; save_ctrls[i] != NULL; i++ );
                        nc = i;
-                       pr_c = ldap_control_find( LDAP_CONTROL_PAGEDRESULTS, save_ctrls, &next_c );
+                       pr_c = ldap_control_find( LDAP_CONTROL_PAGEDRESULTS, save_ctrls, NULL );
                }
 
                if ( pr_c != NULL ) nc--;
@@ -1533,9 +1533,9 @@ really_bad:;
                                        case LDAP_SUCCESS:
                                                if ( ctrls != NULL && ctrls[0] != NULL ) {
 #ifdef SLAPD_META_CLIENT_PR
-                                                       LDAPControl *pr_c, **next_c;
+                                                       LDAPControl *pr_c;
 
-                                                       pr_c = ldap_control_find( LDAP_CONTROL_PAGEDRESULTS, ctrls, &next_c );
+                                                       pr_c = ldap_control_find( LDAP_CONTROL_PAGEDRESULTS, ctrls, NULL );
                                                        if ( pr_c != NULL ) {
                                                                BerElementBuffer berbuf;
                                                                BerElement *ber = (BerElement *)&berbuf;