summaryrefslogtreecommitdiffstats
path: root/apps/x509.c
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2021-05-01 14:35:21 +0200
committerDr. David von Oheimb <dev@ddvo.net>2021-05-05 20:48:20 +0200
commit284076982de7529585c4c13a663203588bff8b12 (patch)
tree07afe26cf4c823f0f20d24b6d95ec32dd5c90820 /apps/x509.c
parent6c0ac9b99f2b7278a5ec60ef0c29c71e9eb4f40d (diff)
APPS: Slightly extend and improve documentation of the opt_ API
Also remove redundant opt_name() and make names of opt_{i,u}ntmax() consistent. Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15111)
Diffstat (limited to 'apps/x509.c')
-rw-r--r--apps/x509.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/x509.c b/apps/x509.c
index 50453c4b7c..8dffdb47c1 100644
--- a/apps/x509.c
+++ b/apps/x509.c
@@ -544,7 +544,7 @@ int x509_main(int argc, char **argv)
checkend = 1;
{
intmax_t temp = 0;
- if (!opt_imax(opt_arg(), &temp))
+ if (!opt_intmax(opt_arg(), &temp))
goto opthelp;
checkoffset = (time_t)temp;
if ((intmax_t)checkoffset != temp) {