http://git.etherboot.org
/
people
/
xl0
/
gpxe.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Allow an explicit network device to be specified for IP-layer
[people/xl0/gpxe.git]
/
src
/
net
/
icmpv6.c
diff --git
a/src/net/icmpv6.c
b/src/net/icmpv6.c
index
3f2b06f
..
4eed058
100644
(file)
--- a/
src/net/icmpv6.c
+++ b/
src/net/icmpv6.c
@@
-60,7
+60,8
@@
int icmp6_send_solicit ( struct net_device *netdev, struct in6_addr *src __unuse
st_dest.sin6.sin6_addr.in6_u.u6_addr8[13] = 0xff;
/* Send packet over IP6 */
- return tcpip_tx ( pkb, &icmp6_protocol, &st_dest.st, &nsolicit->csum );
+ return tcpip_tx ( pkb, &icmp6_protocol, &st_dest.st,
+ NULL, &nsolicit->csum );
}
/**