iwinfo: fix logic flaw in mtd partition check

SVN-Revision: 30678
v19.07.3_mercusys_ac12_duma
Jo-Philipp Wich 13 years ago
parent d85a504d3c
commit a6c89c02ca

@ -165,7 +165,7 @@ int iwinfo_hardware_id_from_mtd(struct iwinfo_hardware_id *id)
while (fgets(buf, sizeof(buf), mtd) > 0) while (fgets(buf, sizeof(buf), mtd) > 0)
{ {
if (fscanf(mtd, "mtd%d: %*x %x %127s", &off, &len, buf) < 3 || if (fscanf(mtd, "mtd%d: %*x %x %127s", &off, &len, buf) < 3 ||
strcmp(buf, "\"boardconfig\"") || strcmp(buf, "\"EEPROM\"")) (strcmp(buf, "\"boardconfig\"") && strcmp(buf, "\"EEPROM\"")))
{ {
off = -1; off = -1;
continue; continue;

Loading…
Cancel
Save