back out unnecessary stylistic changes in recent changes, to keep coding
style closer to NKF.
This commit is contained in:
parent
b9451ead47
commit
781f26d383
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: uipc_syscalls.c,v 1.47 1999/10/27 13:17:46 jdolecek Exp $ */
|
||||
/* $NetBSD: uipc_syscalls.c,v 1.48 1999/10/30 12:11:27 enami Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1982, 1986, 1989, 1990, 1993
|
||||
|
@ -249,12 +249,11 @@ sys_accept(p, v, retval)
|
|||
namelen = nam->m_len;
|
||||
/* SHOULD COPY OUT A CHAIN HERE */
|
||||
if ((error = copyout(mtod(nam, caddr_t),
|
||||
(caddr_t)SCARG(uap, name), namelen)) == 0) {
|
||||
(caddr_t)SCARG(uap, name), namelen)) == 0)
|
||||
error = copyout((caddr_t)&namelen,
|
||||
(caddr_t)SCARG(uap, anamelen),
|
||||
sizeof(*SCARG(uap, anamelen)));
|
||||
}
|
||||
}
|
||||
|
||||
/* if an error occured, free the file descriptor */
|
||||
if (error)
|
||||
|
|
Loading…
Reference in New Issue