Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
6125ef74
Commit
6125ef74
authored
Dec 19, 2002
by
Kurt Zeilenga
Browse files
Sync with HEAD
parent
e384d70b
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-bdb/init.c
View file @
6125ef74
...
...
@@ -120,7 +120,7 @@ bdb_bt_compare(
)
{
unsigned
char
*
u
,
*
c
;
int
i
;
int
i
,
x
;
u
=
usrkey
->
data
;
c
=
curkey
->
data
;
...
...
@@ -131,9 +131,10 @@ bdb_bt_compare(
for
(
i
=
sizeof
(
ID
)
-
1
;
i
>=
0
;
i
--
)
#endif
{
if
(
u
[
i
]
-
c
[
i
]
)
return
u
[
i
]
-
c
[
i
]
;
x
=
u
[
i
]
-
c
[
i
]
;
if
(
x
)
return
x
;
}
return
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