Module Name:    src
Committed By:   msaitoh
Date:           Sun Dec  5 04:35:38 UTC 2021

Modified Files:
        src/bin/csh/USD.doc: csh.g
        src/bin/sh: eval.c
        src/sys/arch/vax/floppy: restar.cmd
        src/sys/kern: kern_acct.c
        src/sys/netbt: rfcomm_session.c

Log Message:
s/commmand/command/ in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/bin/csh/USD.doc/csh.g
cvs rdiff -u -r1.186 -r1.187 src/bin/sh/eval.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/vax/floppy/restar.cmd
cvs rdiff -u -r1.98 -r1.99 src/sys/kern/kern_acct.c
cvs rdiff -u -r1.27 -r1.28 src/sys/netbt/rfcomm_session.c

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

Modified files:

Index: src/bin/csh/USD.doc/csh.g
diff -u src/bin/csh/USD.doc/csh.g:1.5 src/bin/csh/USD.doc/csh.g:1.6
--- src/bin/csh/USD.doc/csh.g:1.5	Thu Aug  7 09:05:08 2003
+++ src/bin/csh/USD.doc/csh.g	Sun Dec  5 04:35:38 2021
@@ -1,4 +1,4 @@
-.\"	$NetBSD: csh.g,v 1.5 2003/08/07 09:05:08 agc Exp $
+.\"	$NetBSD: csh.g,v 1.6 2021/12/05 04:35:38 msaitoh Exp $
 .\"
 .\" Copyright (c) 1980, 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -1503,7 +1503,7 @@ The shell variable
 is set to the 
 .I status 
 returned by the last command.
-It is most useful in shell commmand scripts (3.6).
+It is most useful in shell command scripts (3.6).
 .IP stop
 The
 .I stop

Index: src/bin/sh/eval.c
diff -u src/bin/sh/eval.c:1.186 src/bin/sh/eval.c:1.187
--- src/bin/sh/eval.c:1.186	Mon Nov 22 05:17:43 2021
+++ src/bin/sh/eval.c	Sun Dec  5 04:35:38 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: eval.c,v 1.186 2021/11/22 05:17:43 kre Exp $	*/
+/*	$NetBSD: eval.c,v 1.187 2021/12/05 04:35:38 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)eval.c	8.9 (Berkeley) 6/8/95";
 #else
-__RCSID("$NetBSD: eval.c,v 1.186 2021/11/22 05:17:43 kre Exp $");
+__RCSID("$NetBSD: eval.c,v 1.187 2021/12/05 04:35:38 msaitoh Exp $");
 #endif
 #endif /* not lint */
 
@@ -176,7 +176,7 @@ sh_pipe(int fds[2])
 
 
 /*
- * The eval commmand.
+ * The eval command.
  */
 
 int

Index: src/sys/arch/vax/floppy/restar.cmd
diff -u src/sys/arch/vax/floppy/restar.cmd:1.2 src/sys/arch/vax/floppy/restar.cmd:1.3
--- src/sys/arch/vax/floppy/restar.cmd:1.2	Mon Jan  5 20:52:12 1998
+++ src/sys/arch/vax/floppy/restar.cmd	Sun Dec  5 04:35:38 2021
@@ -1,6 +1,6 @@
-!	$NetBSD: restar.cmd,v 1.2 1998/01/05 20:52:12 perry Exp $
+!	$NetBSD: restar.cmd,v 1.3 2021/12/05 04:35:38 msaitoh Exp $
 !
-!	RESTART COMMMAND FILE
+!	RESTART COMMAND FILE
 SET DEF HEX
 SET DEF LONG
 SET REL:0

Index: src/sys/kern/kern_acct.c
diff -u src/sys/kern/kern_acct.c:1.98 src/sys/kern/kern_acct.c:1.99
--- src/sys/kern/kern_acct.c:1.98	Tue Jun 29 22:40:53 2021
+++ src/sys/kern/kern_acct.c	Sun Dec  5 04:35:38 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_acct.c,v 1.98 2021/06/29 22:40:53 dholland Exp $	*/
+/*	$NetBSD: kern_acct.c,v 1.99 2021/12/05 04:35:38 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_acct.c,v 1.98 2021/06/29 22:40:53 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_acct.c,v 1.99 2021/12/05 04:35:38 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -448,7 +448,7 @@ acct_process(struct lwp *l)
 	acct.ac_utime = encode_comp_t(ut.tv_sec, ut.tv_usec);
 	acct.ac_stime = encode_comp_t(st.tv_sec, st.tv_usec);
 
-	/* (3) The elapsed time the commmand ran (and its starting time) */
+	/* (3) The elapsed time the command ran (and its starting time) */
 	acct.ac_btime = p->p_stats->p_start.tv_sec;
 	getmicrotime(&tmp);
 	timersub(&tmp, &p->p_stats->p_start, &tmp);

Index: src/sys/netbt/rfcomm_session.c
diff -u src/sys/netbt/rfcomm_session.c:1.27 src/sys/netbt/rfcomm_session.c:1.28
--- src/sys/netbt/rfcomm_session.c:1.27	Sat Feb 29 11:40:06 2020
+++ src/sys/netbt/rfcomm_session.c	Sun Dec  5 04:35:38 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: rfcomm_session.c,v 1.27 2020/02/29 11:40:06 maxv Exp $	*/
+/*	$NetBSD: rfcomm_session.c,v 1.28 2021/12/05 04:35:38 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2006 Itronix Inc.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rfcomm_session.c,v 1.27 2020/02/29 11:40:06 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rfcomm_session.c,v 1.28 2021/12/05 04:35:38 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
@@ -1480,7 +1480,7 @@ rfcomm_session_send_frame(struct rfcomm_
 
 	/*
 	 * The CR (command/response) bit identifies the frame either as a
-	 * commmand or a response and is used along with the DLCI to form
+	 * command or a response and is used along with the DLCI to form
 	 * the address. Commands contain the non-initiator address, whereas
 	 * responses contain the initiator address, so the CR value is
 	 * also dependent on the session direction.

Reply via email to