mirror of https://github.com/BOINC/boinc.git
parent
98bd82b77a
commit
e7954ac7d5
|
@ -204,7 +204,7 @@ int CLIENT_STATE::init() {
|
|||
//
|
||||
retval = global_prefs.parse_file(host_venue);
|
||||
if (retval) {
|
||||
printf("Using default preferences.\n");
|
||||
show_message(NULL, "Using default preferences", MSG_INFO);
|
||||
}
|
||||
install_global_prefs();
|
||||
|
||||
|
|
|
@ -177,10 +177,12 @@ void SCHEDULER_OP::backoff(PROJECT* p, char *error_msg ) {
|
|||
int SCHEDULER_OP::start_rpc() {
|
||||
FILE *f;
|
||||
int retval;
|
||||
char msg_buf[256];
|
||||
|
||||
safe_strcpy(scheduler_url, project->scheduler_urls[url_index].text);
|
||||
if (log_flags.sched_ops) {
|
||||
printf("Sending request to scheduler: %s\n", scheduler_url);
|
||||
sprintf(msg_buf, "Sending request to scheduler: %s\n", scheduler_url);
|
||||
show_message(project,msg_buf,MSG_INFO);
|
||||
}
|
||||
if (log_flags.sched_op_debug) {
|
||||
f = fopen(SCHED_OP_REQUEST_FILE, "r");
|
||||
|
|
Loading…
Reference in New Issue