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
ingo Voss
OpenLDAP
Commits
c7248fed
Commit
c7248fed
authored
Sep 28, 2005
by
Howard Chu
Browse files
ITS#4040 fix from HEAD
parent
53a77059
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/schema_init.c
View file @
c7248fed
...
...
@@ -1095,7 +1095,7 @@ uniqueMemberMatch(
struct
berval
*
asserted
=
(
struct
berval
*
)
assertedValue
;
struct
berval
assertedDN
=
*
asserted
;
struct
berval
assertedUID
=
BER_BVNULL
;
struct
berval
valueDN
=
BER_BVNULL
;
struct
berval
valueDN
=
*
value
;
struct
berval
valueUID
=
BER_BVNULL
;
if
(
!
BER_BVISEMPTY
(
asserted
)
)
{
...
...
@@ -1115,7 +1115,6 @@ uniqueMemberMatch(
}
if
(
!
BER_BVISEMPTY
(
value
)
)
{
valueDN
=
*
value
;
valueUID
.
bv_val
=
strrchr
(
valueDN
.
bv_val
,
'#'
);
if
(
!
BER_BVISNULL
(
&
valueUID
)
)
{
...
...
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