comparison svr-session.c @ 1558:2f64cb3d3007 fuzz

- #if not #ifdef for DROPBEAR_FUZZ - fix some unused variables
author Matt Johnston <matt@ucc.asn.au>
date Wed, 28 Feb 2018 21:40:08 +0800
parents bb8eaa26bc93
children 92c93b4a3646
comparison
equal deleted inserted replaced
1557:61a793b6e471 1558:2f64cb3d3007
183 { 183 {
184 /* must be after we've done with username etc */ 184 /* must be after we've done with username etc */
185 session_cleanup(); 185 session_cleanup();
186 } 186 }
187 187
188 #ifdef DROPBEAR_FUZZ 188 #if DROPBEAR_FUZZ
189 // longjmp before cleaning up svr_opts 189 // longjmp before cleaning up svr_opts
190 if (fuzz.do_jmp) { 190 if (fuzz.do_jmp) {
191 longjmp(fuzz.jmp, 1); 191 longjmp(fuzz.jmp, 1);
192 } 192 }
193 #endif 193 #endif