mirror of https://github.com/BOINC/boinc.git
parent
33154c221e
commit
53e43535bf
|
@ -42,9 +42,9 @@ void show_message(PROJECT *p, char* message, int priority) {
|
|||
const char* proj = p?p->project_name:"BOINC";
|
||||
switch (priority) {
|
||||
case MSG_ERROR:
|
||||
fprintf(stderr, "%s [%s] %s", timestamp(), proj, message);
|
||||
fprintf(stderr, "%s [%s] %s\n", timestamp(), proj, message);
|
||||
default:
|
||||
printf("%s [%s] %s", timestamp(), proj, message);
|
||||
printf("%s [%s] %s\n", timestamp(), proj, message);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -502,6 +502,7 @@ int SCHEDULER_REPLY::parse(FILE* in) {
|
|||
global_prefs_xml = 0;
|
||||
project_prefs_xml = 0;
|
||||
safe_strncpy(user_name, "", sizeof(user_name));
|
||||
safe_strncpy(team_name, "", sizeof(team_name));
|
||||
user_total_credit = 0;
|
||||
user_expavg_credit = 0;
|
||||
safe_strncpy(host_venue, "", sizeof(host_venue));
|
||||
|
|
Loading…
Reference in New Issue