From e4936398d0aef967f899fc30e8022af08da108c3 Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Tue, 30 Aug 2016 11:30:14 +0000 Subject: Fix 32-bit time handling, using time_t and make it work on systems where that is long long. ok beck guenther --- src/usr.bin/openssl/apps.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/usr.bin/openssl/apps.h') 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 @@ -/* $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; }; -- cgit v1.2.3-55-g6feb