Module Name: src
Committed By: martin
Date: Fri Jul 13 16:05:02 UTC 2018
Modified Files:
src/external/bsd/ppp/usr.sbin/pppd [netbsd-8]: sys-bsd.c
Log Message:
Pull up following revision(s) (requested by christos in ticket #916):
external/bsd/ppp/usr.sbin/pppd/sys-bsd.c: revision 1.5
New arp code needs RTF_LLDATA for DELETE to work!
XXX: pullup-8
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.4.6.1 src/external/bsd/ppp/usr.sbin/pppd/sys-bsd.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/ppp/usr.sbin/pppd/sys-bsd.c
diff -u src/external/bsd/ppp/usr.sbin/pppd/sys-bsd.c:1.4 src/external/bsd/ppp/usr.sbin/pppd/sys-bsd.c:1.4.6.1
--- src/external/bsd/ppp/usr.sbin/pppd/sys-bsd.c:1.4 Sat Aug 6 05:58:20 2016
+++ src/external/bsd/ppp/usr.sbin/pppd/sys-bsd.c Fri Jul 13 16:05:02 2018
@@ -1679,7 +1679,7 @@ sifproxyarp(int unit, u_int32_t hisaddr)
}
arpmsg.hdr.rtm_type = RTM_ADD;
- arpmsg.hdr.rtm_flags = RTF_ANNOUNCE | RTF_HOST | RTF_STATIC;
+ arpmsg.hdr.rtm_flags = RTF_ANNOUNCE | RTF_HOST | RTF_STATIC | RTF_LLDATA;
arpmsg.hdr.rtm_version = RTM_VERSION;
arpmsg.hdr.rtm_seq = ++rtm_seq;
arpmsg.hdr.rtm_addrs = RTA_DST | RTA_GATEWAY;