@@ -2330,9 +2330,9 @@ static int execute_test_session(int maxprot, int use_int_cache,
2330
2330
*/
2331
2331
2332
2332
/* Make sess1 expire before sess2 */
2333
- if (!TEST_long_gt ( SSL_SESSION_set_time (sess1 , 1000 ), 0 )
2333
+ if (!TEST_time_t_gt ( SSL_SESSION_set_time_ex (sess1 , 1000 ), 0 )
2334
2334
|| !TEST_long_gt (SSL_SESSION_set_timeout (sess1 , 1000 ), 0 )
2335
- || !TEST_long_gt ( SSL_SESSION_set_time (sess2 , 2000 ), 0 )
2335
+ || !TEST_time_t_gt ( SSL_SESSION_set_time_ex (sess2 , 2000 ), 0 )
2336
2336
|| !TEST_long_gt (SSL_SESSION_set_timeout (sess2 , 2000 ), 0 ))
2337
2337
goto end ;
2338
2338
@@ -3991,7 +3991,7 @@ static int early_data_skip_helper(int testtype, int cipher, int idx)
3991
3991
* time. It could be any value as long as it is not within tolerance.
3992
3992
* This should mean the ticket is rejected.
3993
3993
*/
3994
- if (!TEST_true (SSL_SESSION_set_time (sess , ( long )( time (NULL ) - 20 ) )))
3994
+ if (!TEST_true (SSL_SESSION_set_time_ex (sess , time (NULL ) - 20 )))
3995
3995
goto end ;
3996
3996
}
3997
3997
@@ -9325,7 +9325,7 @@ static int test_session_timeout(int test)
9325
9325
SSL_SESSION * late = NULL ;
9326
9326
SSL_CTX * ctx ;
9327
9327
int testresult = 0 ;
9328
- long now = ( long ) time (NULL );
9328
+ time_t now = time (NULL );
9329
9329
#define TIMEOUT 10
9330
9330
9331
9331
if (!TEST_ptr (ctx = SSL_CTX_new_ex (libctx , NULL , TLS_method ()))
@@ -9353,9 +9353,9 @@ static int test_session_timeout(int test)
9353
9353
|| !TEST_ptr (late -> prev ))
9354
9354
goto end ;
9355
9355
9356
- if (!TEST_int_ne ( SSL_SESSION_set_time (early , now - 10 ), 0 )
9357
- || !TEST_int_ne ( SSL_SESSION_set_time (middle , now ), 0 )
9358
- || !TEST_int_ne ( SSL_SESSION_set_time (late , now + 10 ), 0 ))
9356
+ if (!TEST_time_t_ne ( SSL_SESSION_set_time_ex (early , now - 10 ), 0 )
9357
+ || !TEST_time_t_ne ( SSL_SESSION_set_time_ex (middle , now ), 0 )
9358
+ || !TEST_time_t_ne ( SSL_SESSION_set_time_ex (late , now + 10 ), 0 ))
9359
9359
goto end ;
9360
9360
9361
9361
if (!TEST_int_ne (SSL_SESSION_set_timeout (early , TIMEOUT ), 0 )
@@ -9421,9 +9421,9 @@ static int test_session_timeout(int test)
9421
9421
9422
9422
/* make sure |now| is NOT equal to the current time */
9423
9423
now -= 10 ;
9424
- if (!TEST_int_ne ( SSL_SESSION_set_time (early , now ), 0 )
9424
+ if (!TEST_time_t_ne ( SSL_SESSION_set_time_ex (early , now ), 0 )
9425
9425
|| !TEST_int_eq (SSL_CTX_add_session (ctx , early ), 1 )
9426
- || !TEST_long_ne ( SSL_SESSION_get_time (early ), now ))
9426
+ || !TEST_time_t_ne ( SSL_SESSION_get_time_ex (early ), now ))
9427
9427
goto end ;
9428
9428
9429
9429
testresult = 1 ;
0 commit comments