Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
24807705
Commit
24807705
authored
Nov 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5747
parent
199362a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
24807705
...
...
@@ -11,7 +11,8 @@ OpenLDAP 2.4.13 Engineering
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)
...
...
servers/slapd/overlays/collect.c
View file @
24807705
...
...
@@ -46,7 +46,7 @@ typedef struct collect_info {
struct
collect_info
*
ci_next
;
struct
berval
ci_dn
;
int
ci_ad_num
;
AttributeDescription
*
ci_ad
[];
AttributeDescription
*
ci_ad
[
1
];
}
collect_info
;
/*
...
...
@@ -176,7 +176,7 @@ collect_cf( ConfigArgs *c )
/* 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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment