From eaa6d8efe5a6e59499e8998c87e56acf1190babd Mon Sep 17 00:00:00 2001 From: Jonathan Lemon Date: Thu, 13 Dec 2001 04:01:23 +0000 Subject: [PATCH] Minor style fixes. --- sys/netinet/in_pcb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index 96af0d6d70b6..e8506c32385c 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.