projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41c70d4
)
Use X509_cmp_time() in -checkend option, to support GeneralizedTime.
author
Dr. Stephen Henson
<steve@openssl.org>
Sun, 5 Dec 2004 18:26:19 +0000
(18:26 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Sun, 5 Dec 2004 18:26:19 +0000
(18:26 +0000)
apps/x509.c
patch
|
blob
|
history
diff --git
a/apps/x509.c
b/apps/x509.c
index b2288b69c2fd09426a63d830b1d01bec02be4203..294fc69573fe00b4325c278a4c3f37748d8000f1 100644
(file)
--- a/
apps/x509.c
+++ b/
apps/x509.c
@@
-999,9
+999,9
@@
bad:
if (checkend)
{
- time_t t
now=time(NULL)
;
+ time_t t
check=time(NULL) + checkoffset
;
- if (
ASN1_UTCTIME_cmp_time_t(X509_get_notAfter(x), tnow+checkoffset) == -1
)
+ if (
X509_cmp_time(X509_get_notAfter(x), &tcheck) < 0
)
{
BIO_printf(out,"Certificate will expire\n");
ret=1;