From 0d4b76ee5170067d995808e82bbde5fb3edc3b15 Mon Sep 17 00:00:00 2001 From: Christian Herdtweck Date: Thu, 28 May 2015 14:41:38 +0200 Subject: [PATCH] fixed bug that caused HostStatus to never leave BurstMode --- src/host/hoststatus.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/host/hoststatus.cpp b/src/host/hoststatus.cpp index e9410c0..b5613bd 100644 --- a/src/host/hoststatus.cpp +++ b/src/host/hoststatus.cpp @@ -83,7 +83,7 @@ void HostStatus::set_n_parallel_pings(const int n_parallel_pings) if (ExceededPingCongestionLimit) InBurstMode = true; else - InBurstMode = true; + InBurstMode = false; if (NParallelPingers != n_parallel_pings) { -- 1.7.1