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
Tero Saarni
OpenLDAP
Commits
def3a958
Commit
def3a958
authored
Nov 15, 2021
by
Ondřej Kuzník
Committed by
Quanah Gibson-Mount
Dec 15, 2021
Browse files
ITS#9556 Allow handlers to set result code
parent
9e318476
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/bconfig.c
View file @
def3a958
...
...
@@ -5516,7 +5516,7 @@ config_add_internal( CfBackInfo *cfb, Entry *e, ConfigArgs *ca, SlapReply *rs,
}
rc
=
config_parse_add
(
ct
,
ca
,
i
);
if
(
rc
)
{
rc
=
LDAP_OTHER
;
rc
=
ca
->
reply
.
err
?
ca
->
reply
.
err
:
LDAP_OTHER
;
goto
done
;
}
}
...
...
@@ -5860,7 +5860,7 @@ config_modify_add( ConfigTable *ct, ConfigArgs *ca, AttributeDescription *ad,
}
rc
=
config_parse_add
(
ct
,
ca
,
i
);
if
(
rc
)
{
rc
=
LDAP_OTHER
;
rc
=
ca
->
reply
.
err
?
ca
->
reply
.
err
:
LDAP_OTHER
;
}
return
rc
;
}
...
...
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