Fix so DROPBEAR_DSS is only forced for fuzzing

Regression from 787391ea3b,
was missing fuzzing conditional
This commit is contained in:
Matt Johnston 2022-12-06 22:34:11 +08:00
parent ec2215726c
commit c043efb47c

View File

@ -380,9 +380,11 @@
#endif #endif
/* Fuzzing expects all key types to be enabled */ /* Fuzzing expects all key types to be enabled */
#if DROPBEAR_FUZZ
#if defined(DROPBEAR_DSS) #if defined(DROPBEAR_DSS)
#undef DROPBEAR_DSS #undef DROPBEAR_DSS
#endif #endif
#define DROPBEAR_DSS 1 #define DROPBEAR_DSS 1
#endif
/* no include guard for this file */ /* no include guard for this file */