From d4b762687e04bafa5e5ddc2f75c8d813ea660358 Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Sun, 19 Oct 2003 04:00:48 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2509 --- sched/handle_request.C | 8 ++++---- sched/server_types.C | 6 ++++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/sched/handle_request.C b/sched/handle_request.C index 57151e7356..682be6f9d1 100644 --- a/sched/handle_request.C +++ b/sched/handle_request.C @@ -877,8 +877,8 @@ void send_code_sign_key( retval = read_file_malloc(path, oldkey); if (retval) { strcpy(reply.message, - "Can't update code signing key. " - "Please report this to project." + "Can't update code signing key. " + "Please report this to the project administrators." ); return; } @@ -887,8 +887,8 @@ void send_code_sign_key( retval = read_file_malloc(path, signature); if (retval) { strcpy(reply.message, - "Can't update code signing key. " - "Please report this to the project administrators." + "Can't update code signing key. " + "Please report this to the project administrators." ); } else { safe_strcpy(reply.code_sign_key, code_sign_key); diff --git a/sched/server_types.C b/sched/server_types.C index 260efba6e2..f564b5ea96 100644 --- a/sched/server_types.C +++ b/sched/server_types.C @@ -240,8 +240,10 @@ end: // Redirect them to the project home page. fprintf(fout, - "\n", - "../"); + "\n\n" + "You seem to be viewing this page in a WWW browser. Visit the main page.\n\n" + "\n", + "../", "../"); } return 0; }