Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
1d9cc9e0
Commit
1d9cc9e0
authored
Nov 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5790
parent
7770f0fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
1d9cc9e0
...
...
@@ -28,6 +28,7 @@ OpenLDAP 2.4.13 Engineering
Fixed slapd-bdb/hdb invalid db crash (ITS#5698)
Added slapd-bdb/hdb dbpagesize keyword
Added slapd-bdb/hdb checksum keyword
Fixed slapd-bdb/hdb indexing of entryDN (ITS#5790)
Fixed slapd-ldap snprintf buffer overflow test (ITS#4467)
Fixed slapd-ldif file rename on windows (ITS#5774)
Fixed slapd-null read controls support (ITS#5757)
...
...
servers/slapd/back-bdb/attr.c
View file @
1d9cc9e0
...
...
@@ -215,7 +215,7 @@ bdb_attr_index_config(
goto
done
;
}
if
(
slap_ad_is_binary
(
ad
)
)
{
if
(
ad
==
slap_schema
.
si_ad_entryDN
||
slap_ad_is_binary
(
ad
)
)
{
if
(
c_reply
)
{
snprintf
(
c_reply
->
msg
,
sizeof
(
c_reply
->
msg
),
"index of attribute
\"
%s
\"
disallowed"
,
attrs
[
i
]
);
...
...
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