summaryrefslogtreecommitdiffhomepage
path: root/svr-auth.c
diff options
context:
space:
mode:
Diffstat (limited to 'svr-auth.c')
-rw-r--r--svr-auth.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/svr-auth.c b/svr-auth.c
index 577ea88..d00fa7a 100644
--- a/svr-auth.c
+++ b/svr-auth.c
@@ -358,7 +358,11 @@ void send_msg_userauth_failure(int partial, int incrfail) {
genrandom((unsigned char*)&delay, sizeof(delay));
/* We delay for 300ms +- 50ms */
delay = 250000 + (delay % 100000);
- usleep(delay);
+#ifndef DROPBEAR_FUZZ
+ if (!opts.fuzz.fuzzing) {
+ usleep(delay);
+ }
+#endif
ses.authstate.failcount++;
}