From 0b4686dd765aa63d66a24b004c4671a6a5ce4e3c Mon Sep 17 00:00:00 2001 From: Hans Wippel Date: Tue, 5 Sep 2017 16:46:38 +0200 Subject: [PATCH] zdev: Fix IPv6 NDP proxy description Currently, the qeth attributes that are used to configure IPv6 NDP proxy are described as ARP proxy attributes. This patch changes the titles and descriptions from ARP to NDP. Signed-off-by: Hans Wippel Signed-off-by: Michael Holzheu --- zdev/src/qeth.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zdev/src/qeth.c b/zdev/src/qeth.c index b75f1d6a..922cc879 100644 --- a/zdev/src/qeth.c +++ b/zdev/src/qeth.c @@ -634,10 +634,10 @@ static struct attrib qeth_attr_rxip_add4 = { static struct attrib qeth_attr_rxip_add6 = { .name = "rxip/add6", - .title = "Add IPv6 address to ARP proxy list", + .title = "Add IPv6 address to NDP proxy list", .desc = "Write an IPv6 address to this attribute to add it to the list of\n" - "addresses for which this QETH device should act as ARP proxy.\n", + "addresses for which this QETH device should act as NDP proxy.\n", .defval = "", .multi = 1, .activerem = 1, @@ -659,10 +659,10 @@ static struct attrib qeth_attr_rxip_del4 = { static struct attrib qeth_attr_rxip_del6 = { .name = "rxip/del6", - .title = "Remove IPv6 address from ARP proxy list", + .title = "Remove IPv6 address from NDP proxy list", .desc = "Write an IPv6 address to this attribute to remove it from the list\n" - "of addresses for which this QETH device acts as an ARP proxy.\n", + "of addresses for which this QETH device acts as an NDP proxy.\n", .writeonly = 1, .activeonly = 1, .order_cmp = after_layer2_order_cmp,