summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1999-02-15 04:48:32 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1999-02-15 04:48:32 +0000
commit724b6598c91e4febb722f6aa02f5c4dcb863ee8c (patch)
tree6bfe757e44d9f23f962e08ef3f62cec017ab5926
parent3fef0241bc20a1886b4385574cfd8edfd5b8c097 (diff)
Notes
-rw-r--r--sys/kern/uipc_usrreq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c
index e498a4d698fa..e969523fcb79 100644
--- a/sys/kern/uipc_usrreq.c
+++ b/sys/kern/uipc_usrreq.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* From: @(#)uipc_usrreq.c 8.3 (Berkeley) 1/4/94
- * $Id: uipc_usrreq.c,v 1.37 1998/10/25 17:44:51 phk Exp $
+ * $Id: uipc_usrreq.c,v 1.37.2.1 1999/02/15 01:18:25 dillon Exp $
*/
#include <sys/param.h>
@@ -1114,7 +1114,7 @@ unp_gc()
/*
* for each FD on our hit list, do the following two things
*/
- for (i = nunref, fpp = extra_ref; --i >= 0; ++fpp)
+ for (i = nunref, fpp = extra_ref; --i >= 0; ++fpp) {
struct file *tfp = *fpp;
if (tfp->f_type == DTYPE_SOCKET && tfp->f_data != NULL)
sorflush((struct socket *)(tfp->f_data));