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
a624e749
Commit
a624e749
authored
Jun 10, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6474
parent
17f0d5f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
a624e749
...
...
@@ -7,6 +7,7 @@ OpenLDAP 2.4.23 Engineering
Fixed slapd syncrepl rid logging (ITS#6533)
Fixed slapd modrdn handling of invalid values (ITS#6570)
Fixed slapd-bdb hasSubordinates computation (ITS#6549)
Fixed slapd-bdb to use memcpy instead for strcpy (ITS#6474)
Fixed slapo-ppolicy to use Debug (ITS#6566)
Fixed slapo-rwm to use Debug (ITS#6566)
Fixed slapo-sssvlv to use Debug (ITS#6566)
...
...
servers/slapd/back-bdb/dn2id.c
View file @
a624e749
...
...
@@ -680,7 +680,7 @@ hdb_dn2id_delete(
d
->
nrdnlen
[
0
]
=
(
BEI
(
e
)
->
bei_nrdn
.
bv_len
>>
8
)
|
0x80
;
dlen
[
0
]
=
d
->
nrdnlen
[
0
];
dlen
[
1
]
=
d
->
nrdnlen
[
1
];
str
cpy
(
d
->
nrdn
,
BEI
(
e
)
->
bei_nrdn
.
bv_val
);
mem
cpy
(
d
->
nrdn
,
BEI
(
e
)
->
bei_nrdn
.
bv_val
,
BEI
(
e
)
->
bei_nrdn
.
bv_len
+
1
);
data
.
data
=
d
;
rc
=
db
->
cursor
(
db
,
txn
,
&
cursor
,
bdb
->
bi_db_opflags
);
...
...
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