Module Name:    src
Committed By:   thorpej
Date:           Sat Oct  2 17:37:21 UTC 2021

Modified Files:
        src/sys/kern: uipc_syscalls.c
        src/sys/miscfs/fifofs: fifo_vnops.c

Log Message:
...and correct my terrible spelling.


To generate a diff of this commit:
cvs rdiff -u -r1.201 -r1.202 src/sys/kern/uipc_syscalls.c
cvs rdiff -u -r1.88 -r1.89 src/sys/miscfs/fifofs/fifo_vnops.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/kern/uipc_syscalls.c
diff -u src/sys/kern/uipc_syscalls.c:1.201 src/sys/kern/uipc_syscalls.c:1.202
--- src/sys/kern/uipc_syscalls.c:1.201	Sat Oct  2 17:32:55 2021
+++ src/sys/kern/uipc_syscalls.c	Sat Oct  2 17:37:21 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: uipc_syscalls.c,v 1.201 2021/10/02 17:32:55 thorpej Exp $	*/
+/*	$NetBSD: uipc_syscalls.c,v 1.202 2021/10/02 17:37:21 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls.c,v 1.201 2021/10/02 17:32:55 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls.c,v 1.202 2021/10/02 17:37:21 thorpej Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pipe.h"
@@ -1326,7 +1326,7 @@ pipe1(struct lwp *l, int *fildes, int fl
 	 * Pipes must be writable when there is space for
 	 * at least PIPE_BUF bytes in the send buffer.
 	 * If we're increasing the low water mark for the
-	 * send buffer, then mimick how soreserve() would
+	 * send buffer, then mimic how soreserve() would
 	 * have set the high water mark.
 	 */
 	rso->so_rcv.sb_lowat = 1;

Index: src/sys/miscfs/fifofs/fifo_vnops.c
diff -u src/sys/miscfs/fifofs/fifo_vnops.c:1.88 src/sys/miscfs/fifofs/fifo_vnops.c:1.89
--- src/sys/miscfs/fifofs/fifo_vnops.c:1.88	Sat Oct  2 17:32:55 2021
+++ src/sys/miscfs/fifofs/fifo_vnops.c	Sat Oct  2 17:37:21 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: fifo_vnops.c,v 1.88 2021/10/02 17:32:55 thorpej Exp $	*/
+/*	$NetBSD: fifo_vnops.c,v 1.89 2021/10/02 17:37:21 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fifo_vnops.c,v 1.88 2021/10/02 17:32:55 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fifo_vnops.c,v 1.89 2021/10/02 17:37:21 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -164,7 +164,7 @@ fifo_open(void *v)
 		 * FIFOs must be writable when there is space for
 		 * at least PIPE_BUF bytes in the send buffer.
 		 * If we're increasing the low water mark for the
-		 * send buffer, then mimick how soreserve() would
+		 * send buffer, then mimic how soreserve() would
 		 * have set the high water mark.
 		 */
 		rso->so_rcv.sb_lowat = 1;

Reply via email to