From e1079c515a1d2ff08d829e11de6827741d2154f7 Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Fri, 16 Apr 2010 19:32:32 +0000 Subject: [PATCH] swconfig: Fix switch name. This patch fixes a small typo in swconfig's client side that caused it to print the interface name instead of the switch's device name on the help page. Signed-off-by: Jonas Gorski SVN-Revision: 20938 --- package/swconfig/src/swlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/swconfig/src/swlib.c b/package/swconfig/src/swlib.c index 04b3bef49d..8a9fd7a29c 100644 --- a/package/swconfig/src/swlib.c +++ b/package/swconfig/src/swlib.c @@ -581,7 +581,7 @@ add_switch(struct nl_msg *msg, void *arg) if (tb[SWITCH_ATTR_ID]) dev->id = nla_get_u32(tb[SWITCH_ATTR_ID]); if (tb[SWITCH_ATTR_NAME]) - dev->name = strdup(nla_get_string(tb[SWITCH_ATTR_DEV_NAME])); + dev->name = strdup(nla_get_string(tb[SWITCH_ATTR_NAME])); if (tb[SWITCH_ATTR_PORTS]) dev->ports = nla_get_u32(tb[SWITCH_ATTR_PORTS]); if (tb[SWITCH_ATTR_VLANS]) -- 2.30.2