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;