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;