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
c79267b8
Commit
c79267b8
authored
Dec 08, 2009
by
Howard Chu
Browse files
Fix unparse in prev commit
parent
25a4e780
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/config.c
View file @
c79267b8
...
...
@@ -1303,7 +1303,10 @@ slap_sb_uri(
{
slap_bindconf
*
bc
=
bcp
;
if
(
unparse
)
{
*
val
=
bc
->
sb_uri
;
if
(
bc
->
sb_uri
.
bv_len
>=
val
->
bv_len
)
return
-
1
;
val
->
bv_len
=
bc
->
sb_uri
.
bv_len
;
AC_MEMCPY
(
val
->
bv_val
,
bc
->
sb_uri
.
bv_val
,
val
->
bv_len
);
}
else
{
bc
->
sb_uri
=
*
val
;
#ifdef HAVE_TLS
...
...
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