mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-07 07:19:35 -05:00
Fix elifs
git-svn-id: file:///svn/unbound/trunk@3123 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
34b7918f2f
commit
763721f626
1 changed files with 2 additions and 2 deletions
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
#ifdef HAVE_ARC4RANDOM_UNIFORM
|
||||
/* no include for arc4_uniform */
|
||||
#elif HAVE_SSL
|
||||
#elif defined(HAVE_SSL)
|
||||
#include <openssl/rand.h>
|
||||
#include <openssl/rc4.h>
|
||||
#include <openssl/err.h>
|
||||
|
|
@ -109,7 +109,7 @@ ub_random(struct ub_randstate* ATTR_UNUSED(s))
|
|||
return (long)arc4random() & MAX_VALUE;
|
||||
}
|
||||
|
||||
#elif HAVE_SSL
|
||||
#elif defined(HAVE_SSL)
|
||||
/**
|
||||
* Struct with per-thread random state.
|
||||
* Keeps SSL types away from the header file.
|
||||
|
|
|
|||
Loading…
Reference in a new issue