*** empty log message ***

svn path=/trunk/boinc/; revision=3313
This commit is contained in:
David Anderson 2004-05-03 03:24:34 +00:00
parent 7615fe72fa
commit 331d04905f
2 changed files with 9 additions and 2 deletions

View File

@ -11938,3 +11938,10 @@ David May 2 2004
sched/
handle_request.C
server_types.C,h
David May 2 2004
- client: fixed bug in general prefs parsing that caused
source project to be "unidentified"
client/
prefs.C

View File

@ -65,8 +65,6 @@ void GLOBAL_PREFS::init() {
max_memory_mbytes = 128;
proc_priority = 1;
cpu_affinity = -1;
source_project = "";
source_scheduler = "";
};
GLOBAL_PREFS::GLOBAL_PREFS() {
@ -86,6 +84,8 @@ int GLOBAL_PREFS::parse(FILE* in, char* host_venue, bool& found_venue) {
bool in_venue = false, in_correct_venue=false;
init();
source_project = "";
source_scheduler = "";
// set all booleans to false here
run_on_batteries = false;