Module Name:    src
Committed By:   msaitoh
Date:           Thu Dec 26 04:44:10 UTC 2019

Modified Files:
        src/sys/netinet: sctp_output.c sctp_pcb.c

Log Message:
 Fix typo in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/netinet/sctp_output.c
cvs rdiff -u -r1.18 -r1.19 src/sys/netinet/sctp_pcb.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/netinet/sctp_output.c
diff -u src/sys/netinet/sctp_output.c:1.20 src/sys/netinet/sctp_output.c:1.21
--- src/sys/netinet/sctp_output.c:1.20	Tue Dec  3 03:25:28 2019
+++ src/sys/netinet/sctp_output.c	Thu Dec 26 04:44:10 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: sctp_output.c,v 1.20 2019/12/03 03:25:28 msaitoh Exp $ */
+/*	$NetBSD: sctp_output.c,v 1.21 2019/12/26 04:44:10 msaitoh Exp $ */
 /*	$KAME: sctp_output.c,v 1.48 2005/06/16 18:29:24 jinmei Exp $	*/
 
 /*
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sctp_output.c,v 1.20 2019/12/03 03:25:28 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sctp_output.c,v 1.21 2019/12/26 04:44:10 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ipsec.h"
@@ -1761,7 +1761,7 @@ sctp_choose_v6_boundall(struct sctp_inpc
 			/* by definition the scope (from to->sin6_scopeid)
 			 * must match that of the interface. If not then
 			 * we could pick a wrong scope for the address.
-			 * Ususally we don't hit plan-b since the route
+			 * Usually we don't hit plan-b since the route
 			 * handles this. However we can hit plan-b when
 			 * we send to local-host so the route is the
 			 * loopback interface, but the destination is a

Index: src/sys/netinet/sctp_pcb.c
diff -u src/sys/netinet/sctp_pcb.c:1.18 src/sys/netinet/sctp_pcb.c:1.19
--- src/sys/netinet/sctp_pcb.c:1.18	Tue Dec 11 14:38:45 2018
+++ src/sys/netinet/sctp_pcb.c	Thu Dec 26 04:44:10 2019
@@ -1,5 +1,5 @@
 /* $KAME: sctp_pcb.c,v 1.39 2005/06/16 18:29:25 jinmei Exp $ */
-/* $NetBSD: sctp_pcb.c,v 1.18 2018/12/11 14:38:45 christos Exp $ */
+/* $NetBSD: sctp_pcb.c,v 1.19 2019/12/26 04:44:10 msaitoh Exp $ */
 
 /*
  * Copyright (c) 2001, 2002, 2003, 2004 Cisco Systems, Inc.
@@ -33,7 +33,7 @@
  * SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sctp_pcb.c,v 1.18 2018/12/11 14:38:45 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sctp_pcb.c,v 1.19 2019/12/26 04:44:10 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -212,7 +212,7 @@ sctp_fill_pcbinfo(struct sctp_pcbinfo *s
  * Notes on locks for FreeBSD 5 and up. All association
  * lookups that have a definte ep, the INP structure is
  * assumed to be locked for reading. If we need to go
- * find the INP (ususally when a **inp is passed) then
+ * find the INP (usually when a **inp is passed) then
  * we must lock the INFO structure first and if needed
  * lock the INP too. Note that if we lock it we must
  *

Reply via email to