summaryrefslogtreecommitdiffstats
path: root/apps/x509.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-06-21 09:25:16 +0200
committerPauli <pauli@openssl.org>2021-06-22 19:50:11 +1000
commite493d6e0ca4157741d2e4cfcb91fd367851f5771 (patch)
treea517c68e58e81811c8ba2045c31b45d9b0f98cad /apps/x509.c
parent2086818a3142510031f58cfac85747d0393637ed (diff)
APPS & TEST: Use ossl_[u]intmax_t rather than [u]intmax_t
Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15825)
Diffstat (limited to 'apps/x509.c')
-rw-r--r--apps/x509.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/x509.c b/apps/x509.c
index 25c75e8574..558351ba30 100644
--- a/apps/x509.c
+++ b/apps/x509.c
@@ -553,11 +553,11 @@ int x509_main(int argc, char **argv)
case OPT_CHECKEND:
checkend = 1;
{
- intmax_t temp = 0;
+ ossl_intmax_t temp = 0;
if (!opt_intmax(opt_arg(), &temp))
goto opthelp;
checkoffset = (time_t)temp;
- if ((intmax_t)checkoffset != temp) {
+ if ((ossl_intmax_t)checkoffset != temp) {
BIO_printf(bio_err, "%s: Checkend time out of range %s\n",
prog, opt_arg());
goto opthelp;