*** empty log message ***

svn path=/trunk/boinc/; revision=2119
This commit is contained in:
Karl Chen 2003-08-15 21:23:56 +00:00
parent c562ec53cb
commit 88632f4b35
1 changed files with 4 additions and 4 deletions

View File

@ -380,8 +380,8 @@ void host_id() {
}
void core_versions() {
ZFILE f;
f.open("core_versions.xml", false);
ZFILE f(false);
f.open("core_versions.xml");
if (!f) return;
fprintf(f, "<core_versions>\n");
@ -418,8 +418,8 @@ int tables_file() {
DB_USER user;
DB_TEAM team;
DB_HOST host;
ZFILE f;
f.open("tables.xml", false);
ZFILE f(false);
f.open("tables.xml");
if (!f) return -1;
retval = user.count(nusers);
if (retval) return retval;