diff options
author | jlemon <jlemon@FreeBSD.org> | 2001-12-13 04:01:23 +0000 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2001-12-13 04:01:23 +0000 |
commit | 37e5dc6ec1b4e96a539b388b29596deec09450cc (patch) | |
tree | 2244f8affac822b7301b49739e8c98eaeb449391 /sys | |
parent | f3ff850b00cc74ca5493058dcb0f97d8b76a4460 (diff) | |
download | FreeBSD-src-37e5dc6ec1b4e96a539b388b29596deec09450cc.zip FreeBSD-src-37e5dc6ec1b4e96a539b388b29596deec09450cc.tar.gz |
Minor style fixes.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/in_pcb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index 96af0d6..e8506c3 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -355,7 +355,7 @@ in_pcbbind(inp, nam, td) if (prison_ip(p->p_ucred, 0, &inp->inp_laddr.s_addr)) { inp->inp_laddr.s_addr = INADDR_ANY; inp->inp_lport = 0; - return(EINVAL); + return (EINVAL); } if (in_pcbinshash(inp) != 0) { inp->inp_laddr.s_addr = INADDR_ANY; @@ -510,7 +510,7 @@ in_pcbconnect(inp, nam, td) sa.sin_family = AF_INET; error = in_pcbbind(inp, (struct sockaddr *)&sa, td); if (error) - return (error); + return (error); } /* * Call inner routine, to assign local interface address. |