From 23b85623ebdaafaab196713c61e7fe1f9e2a7e1c Mon Sep 17 00:00:00 2001 From: Eric Heien Date: Fri, 14 Feb 2003 18:35:12 +0000 Subject: [PATCH] bug fix svn path=/trunk/boinc/; revision=912 --- sched/file_upload_handler.C | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sched/file_upload_handler.C b/sched/file_upload_handler.C index fec56d459d..fef764b12e 100644 --- a/sched/file_upload_handler.C +++ b/sched/file_upload_handler.C @@ -70,6 +70,9 @@ int FILE_INFO::parse(FILE* in) { strcatdup(signed_xml, buf); if (parse_str(buf, "", name, sizeof(name))) continue; if (parse_double(buf, "", max_nbytes)) continue; + if (match_tag(buf, "")) continue; + if (match_tag(buf, "")) continue; + if (match_tag(buf, "")) continue; sprintf(ebuf, "FILE_INFO::parse: unrecognized: %s \n", buf); write_log(ebuf); }