diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2016-08-30 11:30:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2016-08-30 11:30:15 +0000 |
commit | aa22137512edd5aff031dc72bf767062bd794d5c (patch) | |
tree | da9ea166f8b2662fb878f7e2b3762069a15db79f /usr.bin/openssl/apps.h | |
parent | 846a1d42ddb11a7f5ff062e19775ee08d2d17da7 (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.h | 3 |
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; }; |