diff options
author | Dimitri John Ledkov <dimitri.ledkov@surgut.co.uk> | 2024-07-11 13:36:31 +0200 |
---|---|---|
committer | Pauli <ppzgs1@gmail.com> | 2024-07-31 06:44:51 +0200 |
commit | 1e7ff7be23c6fc8a88a698a57107a0e0c6db2435 (patch) | |
tree | 451afad843640338b14fef6d7995b3f2212e9f26 /crypto/info.c | |
parent | JITTER: add documentation (diff) | |
download | openssl-1e7ff7be23c6fc8a88a698a57107a0e0c6db2435.tar.xz openssl-1e7ff7be23c6fc8a88a698a57107a0e0c6db2435.zip |
JITTER: excercise all tests in CI with JITTER seed source under certain build configuration
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24844)
Diffstat (limited to 'crypto/info.c')
-rw-r--r-- | crypto/info.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/crypto/info.c b/crypto/info.c index f1fec3882d..c09c40f548 100644 --- a/crypto/info.c +++ b/crypto/info.c @@ -189,9 +189,11 @@ DEFINE_RUN_ONCE_STATIC(init_info_strings) add_seeds_string("os-specific"); #endif #ifndef OPENSSL_NO_JITTER - char jent_version_string[32]; - sprintf(jent_version_string, "JITTER (%d)", jent_version()); - add_seeds_string(jent_version_string); + { + char jent_version_string[32]; + sprintf(jent_version_string, "JITTER (%d)", jent_version()); + add_seeds_string(jent_version_string); + } #endif seed_sources = seeds; } |