From 8fe9dcb1b33745b2709d110f84cdc72f68b13b7c Mon Sep 17 00:00:00 2001 From: andvar Date: Sat, 11 May 2024 06:31:59 +0000 Subject: [PATCH] s/timestemps/timestamps/ in comments. --- distrib/miniroot/install.sub | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 98c0dffc7afb..8b697cea4648 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -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 }