mirror of https://github.com/BOINC/boinc.git
scheduler: fix FCGI build
This commit is contained in:
parent
1e77aeb9e2
commit
280c838b29
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue