Quick Updates

svn path=/trunk/boinc/; revision=21175
This commit is contained in:
Rom Walton 2010-04-14 20:54:46 +00:00
parent 061601fe28
commit 99a58f221d
1 changed files with 2 additions and 0 deletions

View File

@ -169,6 +169,8 @@ bool CACCConfigMd5sum::CheckFile(char *contents)
bool match = false;
char *cc510="<cc_config><log_flags></log_flags><options><dont_contact_ref_site>1</dont_contact_ref_site></options></cc_config>";
if ( strstr(contents, cc510) ) match = true;
char *cc602="<cc_config><log_flags></log_flags><options><version_check_server>www.worldcommunitygrid.org</version_check_server><proxy_test_server>www.ibm.com</proxy_test_server><start_delay>120</start_delay></options></cc_config>";
if ( strstr(contents, cc602) ) match = true;
return match;
}