From 57c0b5d4acb6ee33bac2025241a69fe3aa169226 Mon Sep 17 00:00:00 2001 From: David Garske Date: Mon, 18 Dec 2017 14:34:40 -0800 Subject: [PATCH] Adjustment to fix for --enable-32bit where time_t is not long. --- tests/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api.c b/tests/api.c index b14037329..fc7a400cf 100644 --- a/tests/api.c +++ b/tests/api.c @@ -10636,7 +10636,7 @@ static void test_wolfSSL_ASN1_TIME_adj(void) const int hour = 60*60; const int min = 60; const byte asn_utc_time = ASN_UTC_TIME; -#ifndef TIME_T_NOT_LONG +#if !defined(TIME_T_NOT_LONG) && !defined(NO_64BIT) const byte asn_gen_time = ASN_GENERALIZED_TIME; #endif WOLFSSL_ASN1_TIME *asn_time, *s;