Fix opt_imax() call
authorRichard Levitte <levitte@openssl.org>
Sat, 30 Jan 2016 14:39:34 +0000 (15:39 +0100)
committerRichard Levitte <levitte@openssl.org>
Sat, 30 Jan 2016 15:23:44 +0000 (16:23 +0100)
Not all architectures have a time_t defined the same way.  To make
sure we get the same result, we need to cast &checkoffset to (intmax_t *)
and make sure that intmax_t is defined somehow.

To make really sure we don't pass a variable with the wrong size down
to opt_imax(), we use a temporary intmax_t.

Reviewed-by: Rich Salz <rsalz@openssl.org>

No differences found