diff options
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/brandelf/brandelf.c | 4 | ||||
-rw-r--r-- | usr.bin/doscmd/emuint.c | 4 | ||||
-rw-r--r-- | usr.bin/telnet/README | 2 | ||||
-rw-r--r-- | usr.bin/tsort/tsort.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/brandelf/brandelf.c b/usr.bin/brandelf/brandelf.c index 3ae4bdf..ec591e6 100644 --- a/usr.bin/brandelf/brandelf.c +++ b/usr.bin/brandelf/brandelf.c @@ -67,7 +67,7 @@ main(int argc, char **argv) switch (ch) { case 'f': if (change) - errx(1, "f option incompatable with t option"); + errx(1, "f option incompatible with t option"); force = 1; type = atoi(optarg); if (errno == ERANGE || type < 0 || type > 255) { @@ -85,7 +85,7 @@ main(int argc, char **argv) break; case 't': if (force) - errx(1, "t option incompatable with f option"); + errx(1, "t option incompatible with f option"); change = 1; strtype = optarg; break; diff --git a/usr.bin/doscmd/emuint.c b/usr.bin/doscmd/emuint.c index 750a6f9..8e321c0 100644 --- a/usr.bin/doscmd/emuint.c +++ b/usr.bin/doscmd/emuint.c @@ -92,14 +92,14 @@ emuint(regcontext_t *REGS) /* * XXX - * temporary backwards compatability with instbsdi.exe + * temporary backwards compatibility with instbsdi.exe * remove after a while. */ fprintf(stderr, "***\n*** WARNING - unknown emuint function\n"); fprintf(stderr, "*** Continuing; assuming instbsdi redirector.\n"); fprintf(stderr, "*** Please install the new redirector"); fprintf(stderr, " `redir.com' as soon as possible.\n"); - fprintf(stderr, "*** This compatability hack is not permanent.\n"); + fprintf(stderr, "*** This compatibility hack is not permanent.\n"); fprintf(stderr, "***\n"); PUSH(R_AX, REGS); R_BX = R_ES; diff --git a/usr.bin/telnet/README b/usr.bin/telnet/README index b23396e..5bec40d 100644 --- a/usr.bin/telnet/README +++ b/usr.bin/telnet/README @@ -277,7 +277,7 @@ Februrary 22, 1991: source route code is automatically enabled. The NO_GETTYTAB #define has been removed; there - is a compatability routine that can be built into + is a compatibility routine that can be built into libtelnet to achive the same results. The server, telnetd, has been switched to use getopt() diff --git a/usr.bin/tsort/tsort.c b/usr.bin/tsort/tsort.c index 2f73a80..746ea4f 100644 --- a/usr.bin/tsort/tsort.c +++ b/usr.bin/tsort/tsort.c @@ -67,7 +67,7 @@ static char sccsid[] = "@(#)tsort.c 8.3 (Berkeley) 5/4/95"; * tsort [-dlq] [inputfile] * If no input file is specified, standard input is read. * - * Should be compatable with AT&T tsort HOWEVER the output is not identical + * Should be compatible with AT&T tsort HOWEVER the output is not identical * (i.e. for most graphs there is more than one sorted order, and this tsort * usually generates a different one then the AT&T tsort). Also, cycle * reporting seems to be more accurate in this version (the AT&T tsort |