From 08d6b25aa4eb7520b87447b58ee64f5b2fad3673 Mon Sep 17 00:00:00 2001 From: Eric Heien Date: Fri, 28 Mar 2003 21:56:19 +0000 Subject: [PATCH] bug fix svn path=/trunk/boinc/; revision=1113 --- sched/config.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sched/config.C b/sched/config.C index 2e0a6172f5..2ce37d63c3 100644 --- a/sched/config.C +++ b/sched/config.C @@ -53,7 +53,7 @@ int CONFIG::parse(FILE* in) { int CONFIG::parse_file() { FILE* f; - f = fopen("config.xml", "r"); + f = fopen(".htconfig.xml", "r"); if (!f) return ERR_FOPEN; return parse(f); }