From 12ad333ee23874afd32eba468347fc437c3679a9 Mon Sep 17 00:00:00 2001 From: Tim Lan Date: Thu, 5 Jun 2003 21:38:46 +0000 Subject: [PATCH] fixed "time of day" suspension check (was parsing XML incorrectly) svn path=/trunk/boinc/; revision=1310 --- checkin_notes | 5 ++++- client/prefs.C | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/checkin_notes b/checkin_notes index ed088c07d8..a0ebb1bea8 100755 --- a/checkin_notes +++ b/checkin_notes @@ -4488,7 +4488,10 @@ Tim June 5, 2003 - Windiws GUI enhancement fixed "uploading" "downloading" problem fixed minor problem with updateGUI + - bug fix + fixed "time of day" suspension check (was parsing XML incorrectly) client/ client_state.c - wingui_mainwindow.cpp \ No newline at end of file + prefs.c + wingui_mainwindow.cpp diff --git a/client/prefs.C b/client/prefs.C index 5384872f49..16a2a4c244 100644 --- a/client/prefs.C +++ b/client/prefs.C @@ -103,9 +103,9 @@ int GLOBAL_PREFS::parse(FILE* in, char* host_venue) { } else if (match_tag(buf, "")) { run_if_user_active = true; continue; - } else if (parse_int(buf, "", start_hour)) { + } else if (parse_int(buf, "", start_hour)) { continue; - } else if (parse_int(buf, "", end_hour)) { + } else if (parse_int(buf, "", end_hour)) { continue; } else if (match_tag(buf, "")) { confirm_before_connecting = true;