Fix FUZZ_NO_REPLACE_STDERR for fuzz.c

This commit is contained in:
Matt Johnston 2020-10-29 22:14:38 +08:00
parent f92f0777de
commit 6cf29061c2

View File

@ -1,3 +1,4 @@
#define FUZZ_NO_REPLACE_STDERR
#include "includes.h"
#include "includes.h"
@ -9,16 +10,8 @@
#include "bignum.h"
#include "atomicio.h"
#include "fuzz-wrapfd.h"
#define FUZZ_NO_REPLACE_STDERR
#include "fuzz.h"
/* fuzz.h redefines stderr, we don't want that here */
#ifdef origstderr
#undef stderr
#define stderr origstderr
#endif // origstderr
struct dropbear_fuzz_options fuzz;
static void fuzz_dropbear_log(int UNUSED(priority), const char* format, va_list param);