scheduler: fix FCGI build

This commit is contained in:
David Anderson 2024-12-15 13:22:02 -08:00
parent 1e77aeb9e2
commit 280c838b29
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ void get_buda_plan_classes(vector<string> &pcs) {
FILE *f = boinc::fopen("../buda_plan_classes", "r");
if (!f) return;
char buf[256];
while (fgets(buf, 256, f)) {
while (boinc::fgets(buf, 256, f)) {
strip_whitespace(buf);
pcs.push_back(buf);
}