commit | 33254e1c6fa6a1acf28fd0d9b6dc4ee30e569b95 | [log] [tgz] |
---|---|---|
author | Richard Levitte <levitte@openssl.org> | Sat Jan 30 15:39:34 2016 +0100 |
committer | Richard Levitte <levitte@openssl.org> | Sat Jan 30 16:23:44 2016 +0100 |
tree | f5b83d4466c8a1e593b73a5b1a342d14e7e58151 | |
parent | 421e30ec67451ac653e790295a36461a4069d0e4 [diff] |
Fix opt_imax() call 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>