*** empty log message ***

svn path=/trunk/boinc/; revision=2618
This commit is contained in:
Karl Chen 2003-11-03 03:18:13 +00:00
parent 54d5a1d8ca
commit fcaeeffa1d
2 changed files with 3 additions and 5 deletions

View File

@ -7210,7 +7210,7 @@ David 28 Oct 2003
Karl 2003-10-29
- removed test_sanity check from configure
- updated some distribution file list
- updated distribution file lists
- updated installation program to get rid of country_select
configure.ac
*/Makefile.am

View File

@ -293,10 +293,8 @@ int boinc_resolve_filename(const char *virtual_name, string& physical_name) {
physical_name = virtual_name;
// Open the file and load the first line
FILE *fp = fopen(virtual_name, "r");
if (!fp) {
physical_name = virtual_name;
return 1;
}
if (!fp) return 1;
char buf[512];
fgets(buf, 512, fp);
fclose(fp);