diff options
author | rrs <rrs@FreeBSD.org> | 2009-09-17 15:11:12 +0000 |
---|---|---|
committer | rrs <rrs@FreeBSD.org> | 2009-09-17 15:11:12 +0000 |
commit | 141877184752e3e13e04478a2f644eb3c8cf861e (patch) | |
tree | 52be655f936e0f762f039d0cc41cc139c0244591 /sys/netinet/sctp_usrreq.c | |
parent | cd09e6e7af78c8fe28c01998631e299688c81400 (diff) | |
download | FreeBSD-src-141877184752e3e13e04478a2f644eb3c8cf861e.zip FreeBSD-src-141877184752e3e13e04478a2f644eb3c8cf861e.tar.gz |
Support for VNET in SCTP (hopefully)
Diffstat (limited to 'sys/netinet/sctp_usrreq.c')
-rw-r--r-- | sys/netinet/sctp_usrreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/sctp_usrreq.c b/sys/netinet/sctp_usrreq.c index 4442f11..a8ea998 100644 --- a/sys/netinet/sctp_usrreq.c +++ b/sys/netinet/sctp_usrreq.c @@ -544,7 +544,7 @@ sctp_attach(struct socket *so, int proto, struct thread *p) inp->sctp_flags &= ~SCTP_PCB_FLAGS_BOUND_V6; /* I'm not v6! */ ip_inp = &inp->ip_inp.inp; ip_inp->inp_vflag |= INP_IPV4; - ip_inp->inp_ip_ttl = MODULE_GLOBAL(MOD_INET, ip_defttl); + ip_inp->inp_ip_ttl = MODULE_GLOBAL(ip_defttl); #ifdef IPSEC error = ipsec_init_policy(so, &ip_inp->inp_sp); #ifdef SCTP_LOG_CLOSING |