Module Name: src
Committed By: msaitoh
Date: Tue Dec 3 03:25:29 UTC 2019
Modified Files:
src/sys/netinet: sctp_output.c
src/usr.sbin/rtadvd: timer.c
Log Message:
s/upate/update/ in comment.
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/netinet/sctp_output.c
cvs rdiff -u -r1.18 -r1.19 src/usr.sbin/rtadvd/timer.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.19 src/sys/netinet/sctp_output.c:1.20
--- src/sys/netinet/sctp_output.c:1.19 Wed Nov 13 02:51:22 2019
+++ src/sys/netinet/sctp_output.c Tue Dec 3 03:25:28 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: sctp_output.c,v 1.19 2019/11/13 02:51:22 ozaki-r Exp $ */
+/* $NetBSD: sctp_output.c,v 1.20 2019/12/03 03:25:28 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.19 2019/11/13 02:51:22 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sctp_output.c,v 1.20 2019/12/03 03:25:28 msaitoh Exp $");
#ifdef _KERNEL_OPT
#include "opt_ipsec.h"
@@ -5780,7 +5780,7 @@ sctp_med_chunk_output(struct sctp_inpcb
}
return (ENOMEM);
}
- /* upate our MTU size */
+ /* update our MTU size */
/* Do clear IP_DF ? */
if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
no_fragmentflg = 0;
@@ -6679,7 +6679,7 @@ sctp_chunk_retransmission(struct sctp_in
if (m == NULL) {
return (ENOMEM);
}
- /* upate our MTU size */
+ /* update our MTU size */
/* Do clear IP_DF ? */
if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
no_fragmentflg = 0;
@@ -6710,7 +6710,7 @@ sctp_chunk_retransmission(struct sctp_in
if (m == NULL) {
return (ENOMEM);
}
- /* upate our MTU size */
+ /* update our MTU size */
/* Do clear IP_DF ? */
if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) {
no_fragmentflg = 0;
Index: src/usr.sbin/rtadvd/timer.c
diff -u src/usr.sbin/rtadvd/timer.c:1.18 src/usr.sbin/rtadvd/timer.c:1.19
--- src/usr.sbin/rtadvd/timer.c:1.18 Fri Apr 20 16:07:48 2018
+++ src/usr.sbin/rtadvd/timer.c Tue Dec 3 03:25:28 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: timer.c,v 1.18 2018/04/20 16:07:48 roy Exp $ */
+/* $NetBSD: timer.c,v 1.19 2019/12/03 03:25:28 msaitoh Exp $ */
/* $KAME: timer.c,v 1.11 2005/04/14 06:22:35 suz Exp $ */
/*
@@ -105,7 +105,7 @@ rtadvd_set_timer(struct timespec *tm, st
prog_clock_gettime(CLOCK_MONOTONIC, &now);
timespecadd(&now, tm, &timer->tm);
- /* upate the next expiration time */
+ /* update the next expiration time */
if (timespeccmp(&timer->tm, &tm_max, <))
tm_max = timer->tm;