Newer ciscos have become more picky, and will not accept the MULTICAST bit

being set for unicast packets.
This commit is contained in:
Poul-Henning Kamp 2000-03-17 17:06:33 +00:00
parent 1bb26f3a43
commit 63909a9015
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58171

View File

@ -375,7 +375,7 @@ cisco_rcvdata(hook_p hook, struct mbuf *m, meta_p meta)
goto out;
}
h = mtod(m, struct cisco_header *);
h->address = CISCO_MULTICAST; /* broadcast address */
h->address = CISCO_UNICAST;
h->control = 0;
switch (pep->af) {