artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
028d555
)
Fix device name.
author
weingart
<weingart@openbsd.org>
Mon, 7 Apr 1997 02:07:06 +0000
(
02:07
+0000)
committer
weingart
<weingart@openbsd.org>
Mon, 7 Apr 1997 02:07:06 +0000
(
02:07
+0000)
sys/arch/i386/stand/libsa/dev_i386.c
patch
|
blob
|
history
diff --git
a/sys/arch/i386/stand/libsa/dev_i386.c
b/sys/arch/i386/stand/libsa/dev_i386.c
index
c80d926
..
a59750f
100644
(file)
--- a/
sys/arch/i386/stand/libsa/dev_i386.c
+++ b/
sys/arch/i386/stand/libsa/dev_i386.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: dev_i386.c,v 1.
4 1997/04/06 20:08:25 mickey Exp $
*/
+/* $OpenBSD: dev_i386.c,v 1.
5 1997/04/07 02:07:06 weingart Exp $
*/
/*
* Copyright (c) 1996 Michael Shalayeff
@@
-95,8
+95,17
@@
devboot(bootdev, p)
else
*p++ = 'f';
*p++ = 'd';
+#ifndef _TEST
+ *p++ = '(';
+#endif
*p++ = '0' + (bootdev & 0x7f);
+#ifndef _TEST
+ *p++ = ',';
+#endif
*p++ = 'a';
+#ifndef _TEST
+ *p++ = ')';
+#endif
*p = '\0';
}