mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Break apart initialization of s and inp from the declarations in
in_setsockaddr and in_setpeeraddr. Suggested by: Justin T. Gibbs <gibbs@plutotech.com>
This commit is contained in:
parent
b7059dd6df
commit
fdc984f7b6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=25907
1 changed files with 9 additions and 5 deletions
|
@ -31,7 +31,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)in_pcb.c 8.4 (Berkeley) 5/24/95
|
||||
* $Id: in_pcb.c,v 1.31 1997/04/27 20:01:04 wollman Exp $
|
||||
* $Id: in_pcb.c,v 1.32 1997/05/19 00:18:30 tegge Exp $
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -470,10 +470,12 @@ in_setsockaddr(so, nam)
|
|||
struct socket *so;
|
||||
struct mbuf *nam;
|
||||
{
|
||||
int s = splnet();
|
||||
register struct inpcb *inp = sotoinpcb(so);
|
||||
int s;
|
||||
register struct inpcb *inp;
|
||||
register struct sockaddr_in *sin;
|
||||
|
||||
s = splnet();
|
||||
inp = sotoinpcb(so);
|
||||
if (!inp) {
|
||||
splx(s);
|
||||
return EINVAL;
|
||||
|
@ -494,10 +496,12 @@ in_setpeeraddr(so, nam)
|
|||
struct socket *so;
|
||||
struct mbuf *nam;
|
||||
{
|
||||
int s = splnet();
|
||||
struct inpcb *inp = sotoinpcb(so);
|
||||
int s;
|
||||
struct inpcb *inp;
|
||||
register struct sockaddr_in *sin;
|
||||
|
||||
s = splnet();
|
||||
inp = sotoinpcb(so);
|
||||
if (!inp) {
|
||||
splx(s);
|
||||
return EINVAL;
|
||||
|
|
Loading…
Reference in a new issue