summaryrefslogtreecommitdiff
path: root/usr.bin/openssl/apps.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2016-08-30 11:30:15 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2016-08-30 11:30:15 +0000
commitaa22137512edd5aff031dc72bf767062bd794d5c (patch)
treeda9ea166f8b2662fb878f7e2b3762069a15db79f /usr.bin/openssl/apps.h
parent846a1d42ddb11a7f5ff062e19775ee08d2d17da7 (diff)
Fix 32-bit time handling, using time_t and make it work on systems
where that is long long. ok beck guenther
Diffstat (limited to 'usr.bin/openssl/apps.h')
-rw-r--r--usr.bin/openssl/apps.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/openssl/apps.h b/usr.bin/openssl/apps.h
index 4813fa35df4..217931a4b16 100644
--- a/usr.bin/openssl/apps.h
+++ b/usr.bin/openssl/apps.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: apps.h,v 1.17 2015/10/10 22:28:51 doug Exp $ */
+/* $OpenBSD: apps.h,v 1.18 2016/08/30 11:30:14 deraadt Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -310,6 +310,7 @@ struct option {
int (*func)(void);
long *lvalue;
int *value;
+ time_t *tvalue;
} opt;
const int value;
};