Index: sys/kern/uipc_syscalls.c =================================================================== RCS file: /home/ncvs/src/sys/kern/uipc_syscalls.c,v retrieving revision 1.142 diff -u -r1.142 uipc_syscalls.c --- sys/kern/uipc_syscalls.c 6 Mar 2003 04:48:19 -0000 1.142 +++ sys/kern/uipc_syscalls.c 9 Mar 2003 22:54:12 -0000 @@ -3,7 +3,7 @@ * The Regents of the University of California. All rights reserved. * * sendfile(2) and related extensions: - * Copyright (c) 1998, David Greenman. All rights reserved. + * Copyright (c) 1998, David Greenman. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -80,7 +80,7 @@ static int sendit(struct thread *td, int s, struct msghdr *mp, int flags); static int recvit(struct thread *td, int s, struct msghdr *mp, void *namelenp); - + static int accept1(struct thread *td, struct accept_args *uap, int compat); static int do_sendfile(struct thread *td, struct sendfile_args *uap, int compat); static int getsockname1(struct thread *td, struct getsockname_args *uap, @@ -359,7 +359,7 @@ /* * return a namelen of zero for older code which might * ignore the return value from accept. - */ + */ if (uap->name != NULL) { namelen = 0; (void) copyout(&namelen, @@ -1029,13 +1029,13 @@ while (m && len > 0) { unsigned int tocopy; - if (len >= m->m_len) + if (len >= m->m_len) tocopy = m->m_len; else { mp->msg_flags |= MSG_CTRUNC; tocopy = len; } - + if ((error = copyout(mtod(m, caddr_t), ctlbuf, tocopy)) != 0) goto out; @@ -1372,7 +1372,7 @@ } /* - * getsockname1() - Get socket name. + * getsockname1() - Get socket name. * * MPSAFE */ @@ -1650,7 +1650,7 @@ sf_buf_alloc_want--; /* - * If we got a signal, don't risk going back to sleep. + * If we got a signal, don't risk going back to sleep. */ if (error) break; @@ -1849,7 +1870,7 @@ goto done; } /* - * Attempt to look up the page. + * Attempt to look up the page. * * Allocate if not found * @@ -1885,7 +1906,7 @@ int bsize, resid; /* - * Ensure that our page is still around when the I/O + * Ensure that our page is still around when the I/O * completes. */ vm_page_io_start(pg);