Module Name:    src
Committed By:   andvar
Date:           Sun May 21 18:01:38 UTC 2023

Modified Files:
        src/sys/dev/ic: rtl81x9.c
        src/tests/net/net: t_mtudisc.sh

Log Message:
s/thar/that/ in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.113 -r1.114 src/sys/dev/ic/rtl81x9.c
cvs rdiff -u -r1.10 -r1.11 src/tests/net/net/t_mtudisc.sh

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

Modified files:

Index: src/sys/dev/ic/rtl81x9.c
diff -u src/sys/dev/ic/rtl81x9.c:1.113 src/sys/dev/ic/rtl81x9.c:1.114
--- src/sys/dev/ic/rtl81x9.c:1.113	Sun Sep 25 18:43:32 2022
+++ src/sys/dev/ic/rtl81x9.c	Sun May 21 18:01:38 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: rtl81x9.c,v 1.113 2022/09/25 18:43:32 thorpej Exp $	*/
+/*	$NetBSD: rtl81x9.c,v 1.114 2023/05/21 18:01:38 andvar Exp $	*/
 
 /*
  * Copyright (c) 1997, 1998
@@ -86,7 +86,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rtl81x9.c,v 1.113 2022/09/25 18:43:32 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rtl81x9.c,v 1.114 2023/05/21 18:01:38 andvar Exp $");
 
 
 #include <sys/param.h>
@@ -699,7 +699,7 @@ rtk_attach(struct rtk_softc *sc)
 
 	/*
 	 * From this point forward, the attachment cannot fail. A failure
-	 * before this releases all resources thar may have been
+	 * before this releases all resources that may have been
 	 * allocated.
 	 */
 	sc->sc_flags |= RTK_ATTACHED;

Index: src/tests/net/net/t_mtudisc.sh
diff -u src/tests/net/net/t_mtudisc.sh:1.10 src/tests/net/net/t_mtudisc.sh:1.11
--- src/tests/net/net/t_mtudisc.sh:1.10	Mon Mar  6 07:33:27 2017
+++ src/tests/net/net/t_mtudisc.sh	Sun May 21 18:01:38 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: t_mtudisc.sh,v 1.10 2017/03/06 07:33:27 ozaki-r Exp $
+#	$NetBSD: t_mtudisc.sh,v 1.11 2023/05/21 18:01:38 andvar Exp $
 #
 # Copyright (c) 2016 Internet Initiative Japan Inc.
 # All rights reserved.
@@ -114,7 +114,7 @@ mtudisc_basic_body()
 	# Check default value
 	atf_check -s exit:0 -o match:"1" rump.sysctl -n net.inet.ip.mtudisc
 
-	# Teach the peer thar 10.0.0.2(local server) is behind 10.0.1.1(gateway server)
+	# Teach the peer that 10.0.0.2(local server) is behind 10.0.1.1(gateway server)
 	atf_check -s exit:0 -o ignore rump.route add $local_ip/32 $gateway_remote_ip
 
 	# Don't accept fragmented packets
@@ -123,7 +123,7 @@ mtudisc_basic_body()
 	### Setup local server
 	export RUMP_SERVER=$SOCKLOCAL
 
-	# Teach the peer thar 10.0.1.2(remote server) is behind 10.0.0.1(gateway server)
+	# Teach the peer that 10.0.1.2(remote server) is behind 10.0.0.1(gateway server)
 	atf_check -s exit:0 -o ignore rump.route add $remote_ip/32 $gateway_local_ip
 
 	#

Reply via email to