hangup if dialed web pref

svn path=/trunk/boinc/; revision=1045
This commit is contained in:
Eric Heien 2003-03-10 23:21:39 +00:00
parent 4cf1fd133c
commit 35e90feaa6
1 changed files with 4 additions and 1 deletions

View File

@ -39,7 +39,7 @@ void GLOBAL_PREFS::init() {
run_minimized = false;
run_on_startup = false;
confirm_before_connecting = false;
hangup_if_dialed = false;
hangup_if_dialed = true;
work_buf_max_days = 3;
work_buf_min_days = 1;
disk_max_used_gb = 1;
@ -102,6 +102,9 @@ int GLOBAL_PREFS::parse(FILE* in, char* host_venue) {
} else if (match_tag(buf, "<confirm_before_connecting/>")) {
confirm_before_connecting = true;
continue;
} else if (match_tag(buf, "<hangup_if_dialed/>")) {
hangup_if_dialed = true;
continue;
} else if (match_tag(buf, "<run_minimized/>")) {
run_minimized = true;
continue;