From 37e5dc6ec1b4e96a539b388b29596deec09450cc Mon Sep 17 00:00:00 2001 From: jlemon Date: Thu, 13 Dec 2001 04:01:23 +0000 Subject: Minor style fixes. --- sys/netinet/in_pcb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys') 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. -- cgit v1.1