summaryrefslogtreecommitdiff
path: root/dbutil.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2017-06-01 21:30:26 +0800
committerMatt Johnston <matt@ucc.asn.au>2017-06-01 21:30:26 +0800
commitecee269f02a7f61e6bd931543aaeb5ff8b8684c3 (patch)
treefbbdf5023fb405317fdf16df58fad93e4fe46cf7 /dbutil.c
parentfae445a98aaffd3dc2647f700d8e97dae9115dd9 (diff)
downloaddropbear-ecee269f02a7f61e6bd931543aaeb5ff8b8684c3.tar.gz
Add a flag whether to longjmp, missed that last commit
Diffstat (limited to 'dbutil.c')
-rw-r--r--dbutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbutil.c b/dbutil.c
index d04afb6..aadc20e 100644
--- a/dbutil.c
+++ b/dbutil.c
@@ -122,7 +122,7 @@ static void generic_dropbear_exit(int exitcode, const char* format,
#ifdef DROPBEAR_FUZZ
// longjmp before cleaning up svr_opts
- if (fuzz.fuzzing) {
+ if (fuzz.do_jmp) {
longjmp(fuzz.jmp, 1);
}
#endif