diff options
author | deraadt <> | 2016-08-30 11:30:14 +0000 |
---|---|---|
committer | deraadt <> | 2016-08-30 11:30:14 +0000 |
commit | e4936398d0aef967f899fc30e8022af08da108c3 (patch) | |
tree | 23f44a3decbca6a20156754c745e6fafc80120fb /src/usr.bin/openssl/apps.h | |
parent | 250980d0e38e7e7287d2a792dfdd8462eed9e05e (diff) | |
download | openbsd-e4936398d0aef967f899fc30e8022af08da108c3.tar.gz openbsd-e4936398d0aef967f899fc30e8022af08da108c3.tar.bz2 openbsd-e4936398d0aef967f899fc30e8022af08da108c3.zip |
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 'src/usr.bin/openssl/apps.h')
-rw-r--r-- | src/usr.bin/openssl/apps.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/apps.h b/src/usr.bin/openssl/apps.h index 4813fa35df..217931a4b1 100644 --- a/src/usr.bin/openssl/apps.h +++ b/src/usr.bin/openssl/apps.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: apps.h,v 1.17 2015/10/10 22:28:51 doug Exp $ */ | 1 | /* $OpenBSD: apps.h,v 1.18 2016/08/30 11:30:14 deraadt Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -310,6 +310,7 @@ struct option { | |||
310 | int (*func)(void); | 310 | int (*func)(void); |
311 | long *lvalue; | 311 | long *lvalue; |
312 | int *value; | 312 | int *value; |
313 | time_t *tvalue; | ||
313 | } opt; | 314 | } opt; |
314 | const int value; | 315 | const int value; |
315 | }; | 316 | }; |