mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=12220
This commit is contained in:
parent
5dfcc94b69
commit
ef752adbfc
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue