summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/raw_ip6.c
diff options
context:
space:
mode:
authorume <ume@FreeBSD.org>2003-10-06 14:02:09 +0000
committerume <ume@FreeBSD.org>2003-10-06 14:02:09 +0000
commit6c1377b9efb980f7722b089efd455c1362419b76 (patch)
tree405658370f0fbb47ebebd2ecad933720d186cc45 /sys/netinet6/raw_ip6.c
parent08859b205f380a0e04ba5bfec234f9f14b1936b6 (diff)
downloadFreeBSD-src-6c1377b9efb980f7722b089efd455c1362419b76.zip
FreeBSD-src-6c1377b9efb980f7722b089efd455c1362419b76.tar.gz
return(code) -> return (code)
(reduce diffs against KAME)
Diffstat (limited to 'sys/netinet6/raw_ip6.c')
-rw-r--r--sys/netinet6/raw_ip6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet6/raw_ip6.c b/sys/netinet6/raw_ip6.c
index 728da31..1a8f6a5 100644
--- a/sys/netinet6/raw_ip6.c
+++ b/sys/netinet6/raw_ip6.c
@@ -492,7 +492,7 @@ rip6_output(m, va_alist)
ip6_clearpktopts(optp, 0, -1);
m_freem(control);
}
- return(error);
+ return (error);
}
/*
@@ -510,7 +510,7 @@ rip6_ctloutput(so, sopt)
* XXX: is it better to call icmp6_ctloutput() directly
* from protosw?
*/
- return(icmp6_ctloutput(so, sopt));
+ return (icmp6_ctloutput(so, sopt));
else if (sopt->sopt_level != IPPROTO_IPV6)
return (EINVAL);
@@ -647,7 +647,7 @@ rip6_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
((struct in6_ifaddr *)ia)->ia6_flags &
(IN6_IFF_ANYCAST|IN6_IFF_NOTREADY|
IN6_IFF_DETACHED|IN6_IFF_DEPRECATED)) {
- return(EADDRNOTAVAIL);
+ return (EADDRNOTAVAIL);
}
inp->in6p_laddr = addr->sin6_addr;
return 0;
OpenPOWER on IntegriCloud