]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
VALUE_PAIR** not VALUE_PAIR*
authorAlan T. DeKok <aland@freeradius.org>
Wed, 17 Jun 2015 19:46:05 +0000 (15:46 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 17 Jun 2015 19:46:05 +0000 (15:46 -0400)
src/modules/rlm_ldap/groups.c

index b2493c670654fd77c6b2c1494cd2c29afd624e49..72b080b122e7f09aa1fdd71b4fbeaf1570318462 100644 (file)
@@ -312,7 +312,7 @@ rlm_rcode_t rlm_ldap_cacheable_userobj(rlm_ldap_t const *inst, REQUEST *request,
         *      once all group info has been gathered/resolved
         *      successfully.
         */
-       fr_cursor_init(&groups_cursor, groups);
+       fr_cursor_init(&groups_cursor, &groups);
 
        for (i = 0; (i < LDAP_MAX_CACHEABLE) && (i < count); i++) {
                is_dn = rlm_ldap_is_dn(values[i]->bv_val, values[i]->bv_len);