diff options
| author | Yoshinobu Inoue <shin@FreeBSD.org> | 2000-01-09 04:35:39 +0000 |
|---|---|---|
| committer | Yoshinobu Inoue <shin@FreeBSD.org> | 2000-01-09 04:35:39 +0000 |
| commit | d664bbb7491c375b9179eafe5f153e9af1fc44ff (patch) | |
| tree | d0d1160a360d5ab09f2c9ffce32f9d06fc23e7ae | |
| parent | d0a98d79d25262b575e96ad2447644441d4b2a99 (diff) | |
Notes
| -rw-r--r-- | sys/net/if_faith.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_faith.c b/sys/net/if_faith.c index 0e21af77db7c1..60e871cfdd22f 100644 --- a/sys/net/if_faith.c +++ b/sys/net/if_faith.c @@ -82,8 +82,8 @@ faithattach(faith) ifp->if_name = "faith"; ifp->if_unit = i; ifp->if_mtu = FAITHMTU; - /* Change to BROADCAST experimentaly to announce its prefix. */ - ifp->if_flags = /* IFF_LOOPBACK */ IFF_BROADCAST | IFF_MULTICAST; + /* LOOPBACK commented out to announce IPv6 routes to faith */ + ifp->if_flags = /* IFF_LOOPBACK | */ IFF_MULTICAST; ifp->if_ioctl = loioctl; ifp->if_output = looutput; ifp->if_type = IFT_FAITH; |
