diff options
author | 2016-08-31 22:43:02 +0000 | |
---|---|---|
committer | 2016-08-31 22:43:02 +0000 | |
commit | 4128f05db0323367ad79d856b954fef559435efd (patch) | |
tree | b1a4fc302efb94dc0cf5df655643738e4f07b29c | |
parent | avoid arith on void *, by using char * (diff) | |
download | wireguard-openbsd-4128f05db0323367ad79d856b954fef559435efd.tar.xz wireguard-openbsd-4128f05db0323367ad79d856b954fef559435efd.zip |
ASN1_TIME *atim avoids shadowing time
-rw-r--r-- | usr.sbin/acme-client/revokeproc.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/usr.sbin/acme-client/revokeproc.c b/usr.sbin/acme-client/revokeproc.c index 159442b3143..23f66764fdb 100644 --- a/usr.sbin/acme-client/revokeproc.c +++ b/usr.sbin/acme-client/revokeproc.c @@ -1,4 +1,4 @@ -/* $Id: revokeproc.c,v 1.1 2016/08/31 22:01:42 florian Exp $ */ +/* $Id: revokeproc.c,v 1.2 2016/08/31 22:43:02 deraadt Exp $ */ /* * Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -46,19 +46,19 @@ static time_t X509expires(X509 *x) { - ASN1_TIME *time; + ASN1_TIME *atim; struct tm t; unsigned char *str; size_t i = 0; - time = X509_get_notAfter(x); - str = time->data; + atim = X509_get_notAfter(x); + str = atim->data; memset(&t, 0, sizeof(t)); /* Account for 2 and 4-digit time. */ - if (time->type == V_ASN1_UTCTIME) { - if (time->length <= 2) { + if (atim->type == V_ASN1_UTCTIME) { + if (atim->length <= 2) { warnx("invalid ASN1_TIME"); return((time_t)-1); } @@ -68,8 +68,8 @@ X509expires(X509 *x) if (t.tm_year < 70) t.tm_year += 100; i = 2; - } else if (time->type == V_ASN1_GENERALIZEDTIME) { - if (time->length <= 4) { + } else if (atim->type == V_ASN1_GENERALIZEDTIME) { + if (atim->length <= 4) { warnx("invalid ASN1_TIME"); return((time_t)-1); } @@ -84,7 +84,7 @@ X509expires(X509 *x) /* Now the post-year parts. */ - if (time->length <= (int)i + 10) { + if (atim->length <= (int)i + 10) { warnx("invalid ASN1_TIME"); return((time_t)-1); } |