diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-09-22 14:24:52 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2005-09-22 14:24:52 +0000 |
commit | 058fb8921d7c13dee67c52923f86c1439f35f9dc (patch) | |
tree | 13e3578800e635769c9f874f3f40546e78dc3ff1 /usr.sbin/rbootd | |
parent | c048cb99d8d76e834d85497a51f8deaa92c478ec (diff) |
boot-able -> bootable (typo fix in comments only)
from janne johansson (pr #4516)
Diffstat (limited to 'usr.sbin/rbootd')
-rw-r--r-- | usr.sbin/rbootd/defs.h | 6 | ||||
-rw-r--r-- | usr.sbin/rbootd/parseconf.c | 6 | ||||
-rw-r--r-- | usr.sbin/rbootd/rbootd.c | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/usr.sbin/rbootd/defs.h b/usr.sbin/rbootd/defs.h index be884c6c922..b3180dc8d4e 100644 --- a/usr.sbin/rbootd/defs.h +++ b/usr.sbin/rbootd/defs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: defs.h,v 1.6 2003/06/02 23:36:54 millert Exp $ */ +/* $OpenBSD: defs.h,v 1.7 2005/09/22 14:24:51 jmc Exp $ */ /* $NetBSD: defs.h,v 1.5 1995/10/06 05:12:14 thorpej Exp $ */ /* @@ -77,7 +77,7 @@ /* * Configuration file limitations. */ -#define C_MAXFILE 10 /* max number of boot-able files */ +#define C_MAXFILE 10 /* max number of bootable files */ #define C_LINELEN 1024 /* max length of line */ /* @@ -107,7 +107,7 @@ */ typedef struct client_s { u_int8_t addr[RMP_ADDRLEN]; /* addr of machine */ - char *files[C_MAXFILE]; /* boot-able files */ + char *files[C_MAXFILE]; /* bootable files */ struct client_s *next; /* ptr to next */ } CLIENT; diff --git a/usr.sbin/rbootd/parseconf.c b/usr.sbin/rbootd/parseconf.c index f465efbc7e7..025cc104d23 100644 --- a/usr.sbin/rbootd/parseconf.c +++ b/usr.sbin/rbootd/parseconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parseconf.c,v 1.8 2003/06/02 23:36:54 millert Exp $ */ +/* $OpenBSD: parseconf.c,v 1.9 2005/09/22 14:24:51 jmc Exp $ */ /* $NetBSD: parseconf.c,v 1.4 1995/10/06 05:12:16 thorpej Exp $ */ /* @@ -45,7 +45,7 @@ #ifndef lint /*static char sccsid[] = "@(#)parseconf.c 8.1 (Berkeley) 6/4/93";*/ -static char rcsid[] = "$OpenBSD: parseconf.c,v 1.8 2003/06/02 23:36:54 millert Exp $"; +static char rcsid[] = "$OpenBSD: parseconf.c,v 1.9 2005/09/22 14:24:51 jmc Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -154,7 +154,7 @@ ParseConfig(void) /* * If no boot files are spec'd, use the default list. * Otherwise, validate each file (`bcp') against the - * list of boot-able files. + * list of bootable files. */ i = 0; if (bcp == cp) { /* no files spec'd */ diff --git a/usr.sbin/rbootd/rbootd.c b/usr.sbin/rbootd/rbootd.c index 7089658af7f..0ad8f8cc3e5 100644 --- a/usr.sbin/rbootd/rbootd.c +++ b/usr.sbin/rbootd/rbootd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rbootd.c,v 1.21 2005/05/03 01:01:14 djm Exp $ */ +/* $OpenBSD: rbootd.c,v 1.22 2005/09/22 14:24:51 jmc Exp $ */ /* $NetBSD: rbootd.c,v 1.5 1995/10/06 05:12:17 thorpej Exp $ */ /* @@ -51,7 +51,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "@(#)rbootd.c 8.1 (Berkeley) 6/4/93";*/ -static char rcsid[] = "$OpenBSD: rbootd.c,v 1.21 2005/05/03 01:01:14 djm Exp $"; +static char rcsid[] = "$OpenBSD: rbootd.c,v 1.22 2005/09/22 14:24:51 jmc Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -397,7 +397,7 @@ DoExit(void) ** ** Side Effects: ** - All active connections are dropped. -** - List of boot-able files is changed. +** - List of bootable files is changed. ** - List of clients is changed. ** ** Warnings: |