[package] iwinfo: fix logic flaw in mtd partition check

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30678 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Jo-Philipp Wich 2012-02-22 12:30:24 +00:00
parent 539e529fb5
commit 39923b50f8
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ int iwinfo_hardware_id_from_mtd(struct iwinfo_hardware_id *id)
while (fgets(buf, sizeof(buf), mtd) > 0)
{
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;
continue;