diff options
author | Matt Johnston <matt@ucc.asn.au> | 2020-10-21 20:49:22 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2020-10-21 20:49:22 +0800 |
commit | 34f24b18415200f053a7c78ecec2b7b11a7f8135 (patch) | |
tree | 25df7b95c6235ce2de7d9beb17be5f04aaf65ff2 | |
parent | 1a7b944917cce0ef58d899c24166aa20ea041d52 (diff) |
Fix #ifdef DROPBEAR_FUZZ (caught by linter)
-rw-r--r-- | common-session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common-session.c b/common-session.c index f670576..bfe6284 100644 --- a/common-session.c +++ b/common-session.c @@ -466,7 +466,7 @@ static int ident_readln(int fd, char* buf, int count) { return -1; } -#ifdef DROPBEAR_FUZZ +#if DROPBEAR_FUZZ fuzz_dump(&in, 1); #endif |