diff options
author | 1998-05-30 05:45:24 +0000 | |
---|---|---|
committer | 1998-05-30 05:45:24 +0000 | |
commit | f202ce30d96a45fb947d09bedef5d2dbdac6fa17 (patch) | |
tree | bd4e4b08a7703d6ed202780e62e866e2e7bc697d /sys | |
parent | no math needed for cd9660 any more (diff) | |
download | wireguard-openbsd-f202ce30d96a45fb947d09bedef5d2dbdac6fa17.tar.xz wireguard-openbsd-f202ce30d96a45fb947d09bedef5d2dbdac6fa17.zip |
save space
Diffstat (limited to 'sys')
-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 }; |