summaryrefslogtreecommitdiff
path: root/usr.sbin/rbootd/defs.h
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2005-09-22 14:24:52 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2005-09-22 14:24:52 +0000
commit058fb8921d7c13dee67c52923f86c1439f35f9dc (patch)
tree13e3578800e635769c9f874f3f40546e78dc3ff1 /usr.sbin/rbootd/defs.h
parentc048cb99d8d76e834d85497a51f8deaa92c478ec (diff)
boot-able -> bootable (typo fix in comments only)
from janne johansson (pr #4516)
Diffstat (limited to 'usr.sbin/rbootd/defs.h')
-rw-r--r--usr.sbin/rbootd/defs.h6
1 files changed, 3 insertions, 3 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;