diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-05-30 05:45:25 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-05-30 05:45:25 +0000 |
commit | 89f2da17bfc4d20d78c91836c9eb07e21de04a80 (patch) | |
tree | 23f5786a70d7d6c06472e5eb78446c8dc1f65aa7 | |
parent | 3517c8715ce62b93560ee870696a73fd1bd493c3 (diff) |
save space
-rw-r--r-- | sys/stand/boot/boot.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/stand/boot/boot.c b/sys/stand/boot/boot.c index 1337689c6c3..9a51a65c67e 100644 --- a/sys/stand/boot/boot.c +++ b/sys/stand/boot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.20 1998/05/30 01:44:17 mickey Exp $ */ +/* $OpenBSD: boot.c,v 1.21 1998/05/30 05:45:24 deraadt Exp $ */ /* * Copyright (c) 1997,1998 Michael Shalayeff @@ -39,9 +39,9 @@ #include "cmd.h" static const char *const kernels[] = { - "/bsd", "/bsd.gz", - "/obsd", "/obsd.gz", - "/bsd.old", "/bsd.old.gz", + "/bsd", + "/obsd", + "/bsd.old", NULL }; |