[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1281692696.23856.37.camel@firesoul.comx.local>
Date: Fri, 13 Aug 2010 11:44:56 +0200
From: Jesper Dangaard Brouer <hawk@...x.dk>
To: YOSHIFUJI Hideaki <yoshfuji@...ux-ipv6.org>
Cc: netdev@...r.kernel.org, 585591@...s.debian.org,
Noah Meyerhans <noahm@...ian.org>, Paul Martin <pm@...ian.org>,
hawk@...x.dk
Subject: [PATCH] iputils: arping fails to set correct broadcast address
From: Paul Martin <pm@...ian.org>
There seems to have been introduced a bug in iputils release s20100418.
This patch is based upon git://www.linux-ipv6.org/gitroot/iputils.git
(git commit fe342ca3148)
The regression is caused by commit 56018bf1b3
arping: Support link-layer type with larger link-layer address.
As reported by: Paul Martin <pm@...ian.org> in Debian bugreport #585591.
There's a logic error in the function that parses the interface's
broadcast address, causing it not to fill the broadcast address array
correctly.
Please apply.
Reported-by: Paul Martin <pm@...ian.org>
Tested-by: Jesper Dangaard Brouer <hawk@...x.dk>
Signed-off-by: Jesper Dangaard Brouer <hawk@...x.dk>
---
arping.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arping.c b/arping.c
index 9bd6927..2613a12 100644
--- a/arping.c
+++ b/arping.c
@@ -336,7 +336,7 @@ void set_device_broadcast(char *device, unsigned char *ba, size_t balen)
}
for (p = ba, ch = 0; p < ba + balen; p++, ch += 3)
- *p++ = strtoul(brdcast->value + ch * 3, NULL, 16);
+ *p = strtoul(brdcast->value + ch, NULL, 16);
return;
}
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists