diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-06-04 02:45:26 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-06-04 02:45:26 +0000 |
commit | 8b44fe6976bc998d4f0e2aad3f16532a857e5794 (patch) | |
tree | 196a1ce3b84d92c654f45f5c001905bd1b00101d /sbin/disklabel | |
parent | 67797a0990e5f662d6d5a45d57b8df9621d9b446 (diff) |
start to remove non-escaped trailing whitespace, it can confuse troff; pjanzen@
Diffstat (limited to 'sbin/disklabel')
-rw-r--r-- | sbin/disklabel/disklabel.5 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sbin/disklabel/disklabel.5 b/sbin/disklabel/disklabel.5 index d66eb11c45f..38700e69d56 100644 --- a/sbin/disklabel/disklabel.5 +++ b/sbin/disklabel/disklabel.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: disklabel.5,v 1.7 1998/11/11 22:19:56 aaron Exp $ +.\" $OpenBSD: disklabel.5,v 1.8 1999/06/04 02:45:14 aaron Exp $ .\" $NetBSD: disklabel.5,v 1.3 1995/03/18 14:54:36 cgd Exp $ .\" .\" Copyright (c) 1987, 1991, 1993 @@ -87,7 +87,7 @@ A copy of the in-core label for a disk can be obtained with the this works with a file descriptor for a block or character .Pq Dq raw device for any partition of the disk. -The in-core copy of the label is set by the +The in-core copy of the label is set by the .Dv DIOCSDINFO .Xr ioctl . The offset of a partition cannot generally be changed while it is open, @@ -95,7 +95,7 @@ nor can it be made smaller while it is open. One exception is that any change is allowed if no label was found on the disk, and the driver was able to construct only a skeletal label without partition information. -Finally, the +Finally, the .Dv DIOCWDINFO .Xr ioctl operation sets the in-core label and then updates the on-disk label; @@ -137,7 +137,7 @@ struct disklabel { short d_type; /* drive type */ short d_subtype; /* controller/d_type specific */ char d_typename[16]; /* type name, e.g. "eagle" */ - /* + /* * d_packname contains the pack identifier and is returned when * the disklabel is read off the disk or in-core copy. * d_boot0 and d_boot1 are the (optional) names of the @@ -147,12 +147,12 @@ struct disklabel { to retrieve the values from /etc/disktab. */ union { - char un_d_packname[16]; /* pack identifier */ + char un_d_packname[16]; /* pack identifier */ struct { char *un_d_boot0; /* primary bootstrap name */ char *un_d_boot1; /* secondary bootstrap name */ - } un_b; - } d_un; + } un_b; + } d_un; #define d_packname d_un.un_d_packname #define d_boot0 d_un.un_b.un_d_boot0 #define d_boot1 d_un.un_b.un_d_boot1 |