diff options
author | cognet <cognet@FreeBSD.org> | 2009-03-31 23:02:51 +0000 |
---|---|---|
committer | cognet <cognet@FreeBSD.org> | 2009-03-31 23:02:51 +0000 |
commit | b31803623ee1c71fbc50bfdb9d7f640f38673052 (patch) | |
tree | 710b3fd021bdae9f5ddb1fb7dfde05c86a47bf76 /libexec | |
parent | 49cb67d70e99de2dd18f8af78d1923d04847e7fe (diff) | |
download | FreeBSD-src-b31803623ee1c71fbc50bfdb9d7f640f38673052.zip FreeBSD-src-b31803623ee1c71fbc50bfdb9d7f640f38673052.tar.gz |
Use RTF_LLDATA.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/bootpd/rtmsg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/bootpd/rtmsg.c b/libexec/bootpd/rtmsg.c index 071a7d1..b691edc 100644 --- a/libexec/bootpd/rtmsg.c +++ b/libexec/bootpd/rtmsg.c @@ -208,7 +208,7 @@ static int rtmsg(cmd) rtm->rtm_addrs |= RTA_GATEWAY; rtm->rtm_rmx.rmx_expire = expire_time; rtm->rtm_inits = RTV_EXPIRE; - rtm->rtm_flags |= (RTF_HOST | RTF_STATIC); + rtm->rtm_flags |= (RTF_HOST | RTF_STATIC | RTF_LLDATA); sin_m.sin_other = 0; if (doing_proxy) { if (export_only) |