summaryrefslogtreecommitdiffstats
path: root/sbin
diff options
context:
space:
mode:
authorschweikh <schweikh@FreeBSD.org>2002-12-30 21:18:15 +0000
committerschweikh <schweikh@FreeBSD.org>2002-12-30 21:18:15 +0000
commit86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff (patch)
treebd0234a8048c844b06483795cfb1fe4d34b68a4f /sbin
parent338583ff7c1145c5e2deba34aed769eb7998286c (diff)
downloadFreeBSD-src-86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff.zip
FreeBSD-src-86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff.tar.gz
Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/
Add FreeBSD Id tag where missing.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/fdisk/fdisk.c4
-rw-r--r--sbin/fdisk_pc98/fdisk.c2
-rw-r--r--sbin/growfs/growfs.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/sbin/fdisk/fdisk.c b/sbin/fdisk/fdisk.c
index 22ebd74..db753fd 100644
--- a/sbin/fdisk/fdisk.c
+++ b/sbin/fdisk/fdisk.c
@@ -1093,7 +1093,7 @@ process_partition(CMD *command)
}
/*
- * Adjust start upwards, if necessary, to fall on an head boundary.
+ * Adjust start upwards, if necessary, to fall on a head boundary.
*/
if (partp->dp_start % dos_sectors != 0) {
prev_head_boundary = partp->dp_start / dos_sectors * dos_sectors;
@@ -1304,7 +1304,7 @@ sanitize_partition(struct dos_partition *partp)
return (1);
/*
- * Adjust start upwards, if necessary, to fall on an head boundary.
+ * Adjust start upwards, if necessary, to fall on a head boundary.
*/
if (start % dos_sectors != 0) {
prev_head_boundary = start / dos_sectors * dos_sectors;
diff --git a/sbin/fdisk_pc98/fdisk.c b/sbin/fdisk_pc98/fdisk.c
index 2e617be..4aba829 100644
--- a/sbin/fdisk_pc98/fdisk.c
+++ b/sbin/fdisk_pc98/fdisk.c
@@ -1128,7 +1128,7 @@ sanitize_partition(struct dos_partition *partp)
return (1);
/*
- * Adjust start upwards, if necessary, to fall on an head boundary.
+ * Adjust start upwards, if necessary, to fall on a head boundary.
*/
if (start % dos_sectors != 0) {
prev_head_boundary = start / dos_sectors * dos_sectors;
diff --git a/sbin/growfs/growfs.c b/sbin/growfs/growfs.c
index a9719ae..3deb47b 100644
--- a/sbin/growfs/growfs.c
+++ b/sbin/growfs/growfs.c
@@ -538,7 +538,7 @@ initcg(int cylno, time_t utime, int fso, unsigned int Nflag)
* Here we add or subtract (sign +1/-1) the available fragments in a given
* block to or from the fragment statistics. By subtracting before and adding
* after an operation on the free frag map we can easy update the fragment
- * statistic, which seems to be otherwise an rather complex operation.
+ * statistic, which seems to be otherwise a rather complex operation.
*/
static void
frag_adjust(ufs2_daddr_t frag, int sign)
OpenPOWER on IntegriCloud