summaryrefslogtreecommitdiffhomepage
path: root/dbrandom.c
diff options
context:
space:
mode:
Diffstat (limited to 'dbrandom.c')
-rw-r--r--dbrandom.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbrandom.c b/dbrandom.c
index 1907834..7d2e118 100644
--- a/dbrandom.c
+++ b/dbrandom.c
@@ -145,7 +145,7 @@ void addrandom(const unsigned char * buf, unsigned int len)
{
hash_state hs;
-#ifdef DROPBEAR_FUZZ
+#if DROPBEAR_FUZZ
if (fuzz.fuzzing || fuzz.recordf) {
return;
}
@@ -163,7 +163,7 @@ void addrandom(const unsigned char * buf, unsigned int len)
static void write_urandom()
{
-#ifdef DROPBEAR_FUZZ
+#if DROPBEAR_FUZZ
if (fuzz.fuzzing || fuzz.recordf) {
return;
}
@@ -181,7 +181,7 @@ static void write_urandom()
#endif
}
-#ifdef DROPBEAR_FUZZ
+#if DROPBEAR_FUZZ
void fuzz_seed(void) {
hash_state hs;
sha1_init(&hs);
@@ -203,7 +203,7 @@ void seedrandom() {
struct timeval tv;
clock_t clockval;
-#ifdef DROPBEAR_FUZZ
+#if DROPBEAR_FUZZ
if (fuzz.fuzzing || fuzz.recordf) {
return;
}