Module Name:    src
Committed By:   msaitoh
Date:           Wed Jul 24 02:37:17 UTC 2019

Modified Files:
        src/etc/defaults: rc.conf
        src/usr.sbin/sysinst: disks.c partitions.h

Log Message:
Fix typo in comment (s/partion/partition/).


To generate a diff of this commit:
cvs rdiff -u -r1.150 -r1.151 src/etc/defaults/rc.conf
cvs rdiff -u -r1.40 -r1.41 src/usr.sbin/sysinst/disks.c
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/sysinst/partitions.h

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

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.150 src/etc/defaults/rc.conf:1.151
--- src/etc/defaults/rc.conf:1.150	Sun May 12 01:45:25 2019
+++ src/etc/defaults/rc.conf	Wed Jul 24 02:37:17 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.150 2019/05/12 01:45:25 kre Exp $
+#	$NetBSD: rc.conf,v 1.151 2019/07/24 02:37:17 msaitoh Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -126,7 +126,7 @@ lvm=NO
 #
 savecore=YES		savecore_flags="-z"
 			savecore_dir="/var/crash"
-resize_disklabel=NO				# resize partion to fill disk
+resize_disklabel=NO				# resize partition to fill disk
 resize_root=NO					# resize root to fill partition
 per_user_tmp=NO					# per-user /tmp directories
 per_user_tmp_dir="/private/tmp"			# real storage for /tmp

Index: src/usr.sbin/sysinst/disks.c
diff -u src/usr.sbin/sysinst/disks.c:1.40 src/usr.sbin/sysinst/disks.c:1.41
--- src/usr.sbin/sysinst/disks.c:1.40	Tue Jul 23 18:13:40 2019
+++ src/usr.sbin/sysinst/disks.c	Wed Jul 24 02:37:17 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: disks.c,v 1.40 2019/07/23 18:13:40 martin Exp $ */
+/*	$NetBSD: disks.c,v 1.41 2019/07/24 02:37:17 msaitoh Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -518,7 +518,7 @@ bool
 is_partitionable_device(const char *dev)
 {
 	static const char *non_partitionable_devs[] = {
-		"dk",	/* this is alreay a partioned slice */
+		"dk",	/* this is alreay a partitioned slice */
 		NULL
 	};
 

Index: src/usr.sbin/sysinst/partitions.h
diff -u src/usr.sbin/sysinst/partitions.h:1.2 src/usr.sbin/sysinst/partitions.h:1.3
--- src/usr.sbin/sysinst/partitions.h:1.2	Sat Jun 15 08:20:33 2019
+++ src/usr.sbin/sysinst/partitions.h	Wed Jul 24 02:37:17 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: partitions.h,v 1.2 2019/06/15 08:20:33 martin Exp $	*/
+/*	$NetBSD: partitions.h,v 1.3 2019/07/24 02:37:17 msaitoh Exp $	*/
 
 /*
  * Copyright 2018 The NetBSD Foundation, Inc.
@@ -52,7 +52,7 @@
 #define	FS_MFS		257	/* another random (out of range) value */
 #endif
 
-#define	MAX_LABEL_LEN		128	/* max. length of a partion label */
+#define	MAX_LABEL_LEN		128	/* max. length of a partition label */
 #define	MAX_SHORTCUT_LEN	8	/* max. lenght of a shortcut ("a:") */
 
 /*

Reply via email to