From ca948c5e93178a0ef8165867e7a2cea9f603b82b Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Sun, 23 Jul 2006 21:01:09 +0000 Subject: [PATCH] Remove duplicate 'or'. Submitted by: ru --- sys/kern/uipc_usrreq.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c index 65e12ad62ac..e0885c373bd 100644 --- a/sys/kern/uipc_usrreq.c +++ b/sys/kern/uipc_usrreq.c @@ -43,10 +43,10 @@ * used, as sending on one socket delivers directly to the receive socket * buffer of a second socket. The implementation is substantially * complicated by the fact that "ancillary data", such as file descriptors or - * or credentials, may be passed across UNIX domain sockets. The potential - * for passing UNIX domain sockets over other UNIX domain sockets requires - * the implementation of a simple garbage collector to find and tear down - * cycles of disconnected sockets. + * credentials, may be passed across UNIX domain sockets. The potential for + * passing UNIX domain sockets over other UNIX domain sockets requires the + * implementation of a simple garbage collector to find and tear down cycles + * of disconnected sockets. */ #include