diff --git a/checkin_notes b/checkin_notes index c85612c227..803c23fa27 100644 --- a/checkin_notes +++ b/checkin_notes @@ -7175,3 +7175,10 @@ Rom 13 Oct 2011 clientscr/ screensaver_win.cpp + +David 13 Oct 2011 + - client: fix bug where network suspend got ignored when + OS suspends (e.g. sleep or hibernate) + + client/ + cs_prefs.cpp diff --git a/client/cs_prefs.cpp b/client/cs_prefs.cpp index c966ab9ff1..13a21ecb25 100644 --- a/client/cs_prefs.cpp +++ b/client/cs_prefs.cpp @@ -231,6 +231,7 @@ void CLIENT_STATE::check_suspend_network() { if (os_requested_suspend) { network_suspend_reason = SUSPEND_REASON_OS; + network_suspended = true; return; }