swconfig: show tagged port flag

SVN-Revision: 19238
This commit is contained in:
Gabor Juhos 2010-01-20 07:06:12 +00:00
parent fbc389ae9d
commit 428f066b77
2 changed files with 7 additions and 3 deletions

View file

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=swconfig
PKG_RELEASE:=4
PKG_RELEASE:=5
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/kernel.mk

View file

@ -249,8 +249,12 @@ int main(int argc, char **argv)
printf("%s\n", val.value.s);
break;
case SWITCH_TYPE_PORTS:
for(i = 0; i < val.len; i++)
printf("%d ", val.value.ports[i]);
for(i = 0; i < val.len; i++) {
printf("%d%s ",
val.value.ports[i].id,
(val.value.ports[i].flags &
SWLIB_PORT_FLAG_TAGGED) ? "t" : "");
}
printf("\n");
break;
}