Added slapd-bdb/hdb dbpagesize keyword
Added slapd-bdb/hdb checksum keyword
Fixed slapo-chain/translucent back-config support (ITS#5736)
- Fixed slapd-chain segv with search references (ITS#5742)
+ Fixed slapo-chain segv with search references (ITS#5742)
+ Fixed slapo-collect compile with C89 (ITS#5747)
Added slapo-constraint support for LDAP URI constraints (ITS#5704)
Added slapo-constraint support for constraining rename (ITS#5703)
Added slapo-constraint support for relax control (ITS#5705)
struct collect_info *ci_next;
struct berval ci_dn;
int ci_ad_num;
- AttributeDescription *ci_ad[];
+ AttributeDescription *ci_ad[1];
} collect_info;
/*
/* allocate config info with room for attribute array */
ci = ch_malloc( sizeof( collect_info ) +
- ( sizeof (AttributeDescription *) * (count + 1)));
+ sizeof( AttributeDescription * ) * count );
/* validate and normalize dn */
ber_str2bv( c->argv[1], 0, 0, &bv );