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