Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
fde56a18
Commit
fde56a18
authored
Jan 14, 2002
by
Howard Chu
Browse files
More fixes for autosubtype index generation
parent
f4cfb13f
Changes
2
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-bdb/index.c
View file @
fde56a18
...
...
@@ -299,7 +299,6 @@ static int index_at_values(
*
dbnamep
=
type
->
sat_cname
.
bv_val
;
}
else
if
(
tmpmask
&
SLAP_INDEX_AUTO_SUBTYPES
)
{
mask
=
tmpmask
;
*
maskp
=
mask
;
}
if
(
mask
)
{
...
...
@@ -309,6 +308,9 @@ static int index_at_values(
mask
);
if
(
rc
)
return
rc
;
if
(
mask
&
SLAP_INDEX_AUTO_SUBTYPES
)
{
*
maskp
=
mask
;
}
}
if
(
lang
->
bv_len
)
{
...
...
servers/slapd/back-ldbm/index.c
View file @
fde56a18
...
...
@@ -265,7 +265,6 @@ static int index_at_values(
*
dbnamep
=
type
->
sat_cname
.
bv_val
;
}
else
if
(
tmpmask
&
SLAP_INDEX_AUTO_SUBTYPES
)
{
mask
=
tmpmask
;
*
maskp
=
mask
;
}
if
(
mask
)
{
...
...
@@ -273,6 +272,9 @@ static int index_at_values(
&
type
->
sat_cname
,
vals
,
id
,
op
,
mask
);
if
(
mask
&
SLAP_INDEX_AUTO_SUBTYPES
)
{
*
maskp
=
mask
;
}
}
if
(
lang
->
bv_len
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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