if (!fgets(line, sizeof(line), fp))
break;
- /* The line we're interested in is marked either as "flags" or
- * as "Features" depending on the architecture, so check both
- * prefixes */
- if (!STRPREFIX(line, "flags") && !STRPREFIX(line, "Features"))
+ /* The line we're interested in is marked differently depending
+ * on the architecture, so check possible prefixes */
+ if (!STRPREFIX(line, "flags") &&
+ !STRPREFIX(line, "Features") &&
+ !STRPREFIX(line, "features"))
continue;
/* fgets() includes the trailing newline in the output buffer,