Module Name: src
Committed By: andvar
Date: Sat May 11 06:31:59 UTC 2024
Modified Files:
src/distrib/miniroot: install.sub
Log Message:
s/timestemps/timestamps/ in comments.
To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/distrib/miniroot/install.sub
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/miniroot/install.sub
diff -u src/distrib/miniroot/install.sub:1.65 src/distrib/miniroot/install.sub:1.66
--- src/distrib/miniroot/install.sub:1.65 Sat Jul 29 15:46:45 2023
+++ src/distrib/miniroot/install.sub Sat May 11 06:31:59 2024
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: install.sub,v 1.65 2023/07/29 15:46:45 tsutsui Exp $
+# $NetBSD: install.sub,v 1.66 2024/05/11 06:31:59 andvar Exp $
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -1613,12 +1613,12 @@ mi_mount_kernfs() {
}
mi_filter_msgbuf() {
- # Remove timestemps, sort.
+ # Remove timestamps, sort.
sed -e 's/^\[[0-9. ]*\] //' < /kern/msgbuf | sort -u
}
mi_filter_dmesg() {
- # Remove timestemps, sort.
+ # Remove timestamps, sort.
dmesg | awk '{ h=$0; gsub("^[[0-9. ]*] ", "", h); print h; }' \
| sort -u
}