Module Name:    src
Committed By:   andvar
Date:           Wed Jan  3 18:10:42 UTC 2024

Modified Files:
        src/sbin/ifconfig: ifconfig.c
        src/sys/kern: uipc_socket2.c

Log Message:
s/addreseses/addresses/ in comments (and one missing whitespace).


To generate a diff of this commit:
cvs rdiff -u -r1.249 -r1.250 src/sbin/ifconfig/ifconfig.c
cvs rdiff -u -r1.142 -r1.143 src/sys/kern/uipc_socket2.c

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

Modified files:

Index: src/sbin/ifconfig/ifconfig.c
diff -u src/sbin/ifconfig/ifconfig.c:1.249 src/sbin/ifconfig/ifconfig.c:1.250
--- src/sbin/ifconfig/ifconfig.c:1.249	Fri Nov 25 08:41:05 2022
+++ src/sbin/ifconfig/ifconfig.c	Wed Jan  3 18:10:42 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: ifconfig.c,v 1.249 2022/11/25 08:41:05 knakahara Exp $	*/
+/*	$NetBSD: ifconfig.c,v 1.250 2024/01/03 18:10:42 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
@@ -63,7 +63,7 @@
 #ifndef lint
 __COPYRIGHT("@(#) Copyright (c) 1983, 1993\
  The Regents of the University of California.  All rights reserved.");
-__RCSID("$NetBSD: ifconfig.c,v 1.249 2022/11/25 08:41:05 knakahara Exp $");
+__RCSID("$NetBSD: ifconfig.c,v 1.250 2024/01/03 18:10:42 andvar Exp $");
 #endif /* not lint */
 
 #include <sys/param.h>
@@ -751,8 +751,8 @@ main(int argc, char **argv)
 	 *
 	 * -a means "print status of all interfaces".
 	 *
-	 * -w means "spin until DAD completes for all addreseses", and is
-	 * mutually exclusivewith all other flags/commands.
+	 * -w means "spin until DAD completes for all addresses", and is
+	 * mutually exclusive with all other flags/commands.
 	 */
 	if ((lflag || Cflag || wflag) &&
 	    (aflag || get_flag('m') || vflag || zflag))

Index: src/sys/kern/uipc_socket2.c
diff -u src/sys/kern/uipc_socket2.c:1.142 src/sys/kern/uipc_socket2.c:1.143
--- src/sys/kern/uipc_socket2.c:1.142	Wed Oct 26 23:38:09 2022
+++ src/sys/kern/uipc_socket2.c	Wed Jan  3 18:10:42 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: uipc_socket2.c,v 1.142 2022/10/26 23:38:09 riastradh Exp $	*/
+/*	$NetBSD: uipc_socket2.c,v 1.143 2024/01/03 18:10:42 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uipc_socket2.c,v 1.142 2022/10/26 23:38:09 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uipc_socket2.c,v 1.143 2024/01/03 18:10:42 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"
@@ -1202,7 +1202,7 @@ sbappendaddrchain(struct sockbuf *sb, co
 
 bad:
 	/*
-	 * On error, free the prepended addreseses. For consistency
+	 * On error, free the prepended addresses. For consistency
 	 * with sbappendaddr(), leave it to our caller to free
 	 * the input record chain passed to us as m0.
 	 */

Reply via email to