From 725eeee2e9633189b16314a69958239e75814c83 Mon Sep 17 00:00:00 2001 From: Eric Heien Date: Wed, 18 Dec 2002 20:13:36 +0000 Subject: [PATCH] hangup modem if dialed svn path=/trunk/boinc/; revision=759 --- client/prefs.C | 1 + client/prefs.h | 1 + 2 files changed, 2 insertions(+) diff --git a/client/prefs.C b/client/prefs.C index 55c1937850..7001403969 100644 --- a/client/prefs.C +++ b/client/prefs.C @@ -37,6 +37,7 @@ GLOBAL_PREFS::GLOBAL_PREFS() { dont_run_on_batteries = false; dont_run_if_user_active = false; confirm_before_connecting = false; + hangup_if_dialed = false; high_water_days = 3; low_water_days = 1; disk_max_used_gb = 1; diff --git a/client/prefs.h b/client/prefs.h index 4887f0266a..7dff39d67a 100644 --- a/client/prefs.h +++ b/client/prefs.h @@ -37,6 +37,7 @@ struct GLOBAL_PREFS { bool dont_run_on_batteries; bool dont_run_if_user_active; bool confirm_before_connecting; + bool hangup_if_dialed; double high_water_days; double low_water_days; double disk_max_used_gb;