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
Nadezhda Ivanova
OpenLDAP
Commits
3d9c49f9
Commit
3d9c49f9
authored
May 21, 1999
by
Kurt Zeilenga
Browse files
Fix typo in ldap_delete_ext() which caused msgid to be incremented twice.
parent
4e2b2f8a
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/libldap/delete.c
View file @
3d9c49f9
...
...
@@ -69,8 +69,7 @@ ldap_delete_ext(
}
/* close '{' */
if
(
ber_printf
(
ber
,
"}"
,
++
ld
->
ld_msgid
,
LDAP_REQ_DELETE
,
dn
)
==
-
1
)
{
if
(
ber_printf
(
ber
,
"}"
)
==
-
1
)
{
ld
->
ld_errno
=
LDAP_ENCODING_ERROR
;
ber_free
(
ber
,
1
);
return
(
ld
->
ld_errno
);
...
...
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