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
openldap
OpenLDAP
Commits
810abc14
Commit
810abc14
authored
Dec 06, 2004
by
Howard Chu
Browse files
Better fix for prev commit
parent
89912db9
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/schema_init.c
View file @
810abc14
...
...
@@ -2729,12 +2729,11 @@ int generalizedTimeFilter(
bvtmp
.
bv_len
=
sizeof
(
tmp
);
bvtmp
.
bv_val
=
tmp
;
keys
=
slap_sl_malloc
(
sizeof
(
struct
berval
)
*
2
,
ctx
);
/* GeneralizedTime YYYYmmddHH[MM[SS]][(./,)d...](Z|(+/-)HH[MM]) */
/* Use 40 bits of time for key */
if
(
value
->
bv_val
&&
value
->
bv_len
>=
10
&&
lutil_parsetime
(
value
->
bv_val
,
&
tm
)
==
0
)
{
lutil_tm2time
(
&
tm
,
&
tt
);
tmp
[
0
]
=
tt
.
tt_gsec
&
0xff
;
tmp
[
4
]
=
tt
.
tt_sec
&
0xff
;
...
...
@@ -2745,15 +2744,14 @@ int generalizedTimeFilter(
tt
.
tt_sec
>>=
8
;
tmp
[
1
]
=
tt
.
tt_sec
&
0xff
;
keys
=
slap_sl_malloc
(
sizeof
(
struct
berval
)
*
2
,
ctx
);
ber_dupbv_x
(
keys
,
&
bvtmp
,
ctx
);
keys
[
1
].
bv_val
=
NULL
;
keys
[
1
].
bv_len
=
0
;
}
else
{
keys
[
0
].
bv_val
=
NULL
;
keys
[
0
].
bv_len
=
0
;
keys
=
NULL
;
}
keys
[
1
].
bv_val
=
NULL
;
keys
[
1
].
bv_len
=
0
;
*
keysp
=
keys
;
return
LDAP_SUCCESS
;
...
...
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