From b7d3d9d3cef2286b7266dc447265a0a21565b9b9 Mon Sep 17 00:00:00 2001 From: jogo Date: Mon, 3 Oct 2011 23:39:31 +0000 Subject: [PATCH 1/1] swconfig: fix vlan/port configs being applied to all switches Check devn instead of dev (which will never be null at this point). git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28362 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/swconfig/Makefile | 2 +- package/swconfig/src/uci.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/swconfig/Makefile b/package/swconfig/Makefile index 91939bb73..099058e5f 100644 --- a/package/swconfig/Makefile +++ b/package/swconfig/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=swconfig -PKG_RELEASE:=9 +PKG_RELEASE:=10 include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/kernel.mk diff --git a/package/swconfig/src/uci.c b/package/swconfig/src/uci.c index 1de689ce6..893e3d1dd 100644 --- a/package/swconfig/src/uci.c +++ b/package/swconfig/src/uci.c @@ -183,7 +183,7 @@ found: port = o->v.string; } } - if (!dev || !port || !port[0]) + if (!devn || !port || !port[0]) continue; port_n = strtoul(port, &port_err, 0); @@ -208,7 +208,7 @@ found: vlan = o->v.string; } } - if (!dev || !vlan || !vlan[0]) + if (!devn || !vlan || !vlan[0]) continue; vlan_n = strtoul(vlan, &vlan_err, 0); -- 2.20.1