diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2016-01-07 00:40:51 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2016-01-07 00:40:51 +0000 |
commit | dc83b58bbee523b7400472f573a44887cbd0642a (patch) | |
tree | eb667008656693411615bab6f9f0c665ccab9726 /sbin | |
parent | ad386aeec35ec2185d270b03008f3fb87a977e77 (diff) | |
download | FreeBSD-src-dc83b58bbee523b7400472f573a44887cbd0642a.zip FreeBSD-src-dc83b58bbee523b7400472f573a44887cbd0642a.tar.gz |
MFC r289677:
Fix a ton of speelling errors
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/devd/devd.cc | 2 | ||||
-rw-r--r-- | sbin/fsck_ffs/fsck.h | 2 | ||||
-rw-r--r-- | sbin/fsck_ffs/globs.c | 2 | ||||
-rw-r--r-- | sbin/natd/natd.c | 2 | ||||
-rw-r--r-- | sbin/newfs_nandfs/newfs_nandfs.c | 2 | ||||
-rw-r--r-- | sbin/rcorder/rcorder.c | 4 |
6 files changed, 7 insertions, 7 deletions
diff --git a/sbin/devd/devd.cc b/sbin/devd/devd.cc index 9c46453..a0cb037 100644 --- a/sbin/devd/devd.cc +++ b/sbin/devd/devd.cc @@ -850,7 +850,7 @@ create_socket(const char *name, int socktype) return (fd); } -unsigned int max_clients = 10; /* Default, can be overriden on cmdline. */ +unsigned int max_clients = 10; /* Default, can be overridden on cmdline. */ unsigned int num_clients; list<client_t> clients; diff --git a/sbin/fsck_ffs/fsck.h b/sbin/fsck_ffs/fsck.h index c0ec651..57e0773 100644 --- a/sbin/fsck_ffs/fsck.h +++ b/sbin/fsck_ffs/fsck.h @@ -301,7 +301,7 @@ extern char snapname[BUFSIZ]; /* when doing snapshots, the name of the file */ extern char *cdevname; /* name of device being checked */ extern long dev_bsize; /* computed value of DEV_BSIZE */ extern long secsize; /* actual disk sector size */ -extern u_int real_dev_bsize; /* actual disk sector size, not overriden */ +extern u_int real_dev_bsize; /* actual disk sector size, not overridden */ extern char nflag; /* assume a no response */ extern char yflag; /* assume a yes response */ extern int bkgrdflag; /* use a snapshot to run on an active system */ diff --git a/sbin/fsck_ffs/globs.c b/sbin/fsck_ffs/globs.c index c5b1e1b..e910bc9 100644 --- a/sbin/fsck_ffs/globs.c +++ b/sbin/fsck_ffs/globs.c @@ -73,7 +73,7 @@ char snapname[BUFSIZ]; /* when doing snapshots, the name of the file */ char *cdevname; /* name of device being checked */ long dev_bsize; /* computed value of DEV_BSIZE */ long secsize; /* actual disk sector size */ -u_int real_dev_bsize; /* actual disk sector size, not overriden */ +u_int real_dev_bsize; /* actual disk sector size, not overridden */ char nflag; /* assume a no response */ char yflag; /* assume a yes response */ int bkgrdflag; /* use a snapshot to run on an active system */ diff --git a/sbin/natd/natd.c b/sbin/natd/natd.c index 959e1ee..1215351 100644 --- a/sbin/natd/natd.c +++ b/sbin/natd/natd.c @@ -223,7 +223,7 @@ int main (int argc, char** argv) /* * Create divert sockets. Use only one socket if -p was specified * on command line. Otherwise, create separate sockets for - * outgoing and incoming connnections. + * outgoing and incoming connections. */ if (mip->inOutPort) { diff --git a/sbin/newfs_nandfs/newfs_nandfs.c b/sbin/newfs_nandfs/newfs_nandfs.c index 3990dbb..9500805 100644 --- a/sbin/newfs_nandfs/newfs_nandfs.c +++ b/sbin/newfs_nandfs/newfs_nandfs.c @@ -1088,7 +1088,7 @@ static void print_summary(void) { - printf("filesystem created succesfully\n"); + printf("filesystem was created successfully\n"); printf("total segments: %#jx valid segments: %#jx\n", nsegments, nsegments - bad_segments_count); printf("total space: %ju MB free: %ju MB\n", diff --git a/sbin/rcorder/rcorder.c b/sbin/rcorder/rcorder.c index 8c46b4f..1d10a40 100644 --- a/sbin/rcorder/rcorder.c +++ b/sbin/rcorder/rcorder.c @@ -220,7 +220,7 @@ strnode_add(strnodelist **listp, char *s, filenode *fnode) /* * below are the functions that deal with creating the lists - * from the filename's given and the dependancies and provisions + * from the filename's given dependencies and provisions * in each of these files. no ordering or checking is done here. */ @@ -696,7 +696,7 @@ keep_ok(filenode *fnode) * * NOTE: do_file() is called recursively from several places and cannot * safely free() anything related to items that may be recursed on. - * Circular dependancies will cause problems if we do. + * Circular dependencies will cause problems if we do. */ static void do_file(filenode *fnode) |