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
08124f28
Commit
08124f28
authored
Nov 17, 2005
by
Kurt Zeilenga
Browse files
Add empty modify fix (ITS#4183)
parent
6bfda4d8
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
08124f28
...
...
@@ -6,6 +6,7 @@ OpenLDAP 2.3.12 Release
Fixed libldap HSTRERROR issue (ITS#4124)
Added libldap/slapd TLS DSA certificate support (ITS#4017)
Fixed libldap SASL bind issue (ITS#4158)
Fixed ldapmodrdn empty line handling (ITS#4101)
Fixed client tools additional info printing (ITS#4147)
Updated slapd ldaps:// not configured fix (ITS#4082,4083)
Fixed slapd illegal S option bug (ITS#4119)
...
...
@@ -16,7 +17,9 @@ OpenLDAP 2.3.12 Release
Fixed slapd non-reentrant libwrap issue (ITS#4099)
Fixed slapd AIX IFMT issue (ITS#4123)
Fixed slapd thread v. tools_threads settings
Fixed ldapmodrdn empty line handling (ITS#4101)
Fixed slapd spurious defer message (ITS#3850)
Fixed slapd attribute SYNTAX OIDM issue (ITS#4116)
Fixed slapd modify empty sequence bug (ITS#4183)
Fixed slapd-bdb uninitialized condition in tool mode (ITS#4143)
Fixed slapd-bdb empty suffix and syncprov issue (ITS#4171)
Fixed slapd-hdb syncrepl deadlock issue (ITS#4088)
...
...
@@ -32,8 +35,6 @@ OpenLDAP 2.3.12 Release
Fixed slapo-ppolicy pwdFailureTIme after bind success issue (ITS#4134)
Fixed slapo-ppolicy add passord_hash quality config dependency
Fixed slapo-syncprov LDAP response types (ITS#4183)
Fixed slapd spurious defer message (ITS#3850)
Fixed slapd attribute SYNTAX OIDM issue (ITS#4116)
Added slapd delta syncrepl support
Added slapadd thread support
Updated slapcat subordinate database handling (ITS#4089)
...
...
servers/slapd/modify.c
View file @
08124f28
...
...
@@ -169,6 +169,14 @@ do_modify(
}
*
modtail
=
NULL
;
if
(
modlist
==
NULL
)
{
Debug
(
LDAP_DEBUG_ANY
,
"do_modify: no modifications
\n
"
,
0
,
0
,
0
);
send_ldap_error
(
op
,
rs
,
LDAP_PROTOCOL_ERROR
,
"change sequence empty"
);
goto
cleanup
;
}
if
(
get_ctrls
(
op
,
rs
,
1
)
!=
LDAP_SUCCESS
)
{
Debug
(
LDAP_DEBUG_ANY
,
"do_modify: get_ctrls failed
\n
"
,
0
,
0
,
0
);
...
...
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