Fix typo in comment (s/partion/partition/).
This commit is contained in:
parent
ffc6932403
commit
532016140e
|
@ -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
|
||||
|
|
|
@ -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
|
||||
};
|
||||
|
||||
|
|
|
@ -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:") */
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue