diff options
author | Matt Johnston <matt@ucc.asn.au> | 2018-02-28 21:40:08 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-02-28 21:40:08 +0800 |
commit | c658b275fd01fa62eea135742c623dba5f39845c (patch) | |
tree | 3381eaf5a73610d212dd007d3f9994970bd874f9 /svr-session.c | |
parent | 9bbce01e1b9d6b42869bbba9f36d6849a42276fe (diff) |
- #if not #ifdef for DROPBEAR_FUZZ
- fix some unused variables
--HG--
branch : fuzz
Diffstat (limited to 'svr-session.c')
-rw-r--r-- | svr-session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svr-session.c b/svr-session.c index b097ff2..9b513ee 100644 --- a/svr-session.c +++ b/svr-session.c @@ -185,7 +185,7 @@ void svr_dropbear_exit(int exitcode, const char* format, va_list param) { session_cleanup(); } -#ifdef DROPBEAR_FUZZ +#if DROPBEAR_FUZZ // longjmp before cleaning up svr_opts if (fuzz.do_jmp) { longjmp(fuzz.jmp, 1); |