*** empty log message ***

svn path=/trunk/boinc/; revision=12220
This commit is contained in:
Charlie Fenton 2007-03-14 00:07:23 +00:00
parent 5dfcc94b69
commit ef752adbfc
3 changed files with 8 additions and 2 deletions

View File

@ -2428,3 +2428,10 @@ David 13 Mar 2007
client/
cpu_sched.C
work_fetch.C
Charlie 13 Mar 2007
- Fix compiler warnings.
client/
gui_rpc_server.C
gui_rpc_server_ops.C

View File

@ -218,7 +218,7 @@ int RPC_CLIENT::authorize(const char* passwd) {
}
n = snprintf(buf, sizeof(buf), "%s%s", nonce, passwd);
if (n >= sizeof(buf)) return ERR_AUTHENTICATOR;
if (n >= (int)sizeof(buf)) return ERR_AUTHENTICATOR;
md5_block((const unsigned char*)buf, (int)strlen(buf), nonce_hash);
sprintf(buf, "<auth2/>\n<nonce_hash>%s</nonce_hash>\n", nonce_hash);
retval = rpc.do_rpc(buf);

View File

@ -1398,7 +1398,6 @@ int RPC_CLIENT::get_all_projects_list(ALL_PROJECTS_LIST& pl) {
char tag[256];
bool is_tag;
MIOFILE mf;
FILE* f;
PROJECT_LIST_ENTRY* project;
RPC rpc(this);