diff options
author | 2007-05-31 23:34:46 +0000 | |
---|---|---|
committer | 2007-05-31 23:34:46 +0000 | |
commit | b9e4b788abf8d7dc81f8c44ebc4a85a157ab2075 (patch) | |
tree | 6748bc6b1da39df3da6257a44bb9a9e694f5de14 | |
parent | gc unreachable code; spotted by Tavis Ormandy (diff) | |
download | wireguard-openbsd-b9e4b788abf8d7dc81f8c44ebc4a85a157ab2075.tar.xz wireguard-openbsd-b9e4b788abf8d7dc81f8c44ebc4a85a157ab2075.zip |
It's the time to squash antique bugs. This has been there
for some time. I can't believe it took a re-read for future
functionality plus something I wrote and kjell@ saved from '97
for me to find this.
ok tom@
-rw-r--r-- | sys/arch/i386/stand/biosboot/biosboot.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/biosboot/biosboot.S b/sys/arch/i386/stand/biosboot/biosboot.S index 49e64ee5baf..057b109878b 100644 --- a/sys/arch/i386/stand/biosboot/biosboot.S +++ b/sys/arch/i386/stand/biosboot/biosboot.S @@ -1,4 +1,4 @@ -/* $OpenBSD: biosboot.S,v 1.37 2004/02/10 00:35:16 tom Exp $ */ +/* $OpenBSD: biosboot.S,v 1.38 2007/05/31 23:34:46 weingart Exp $ */ /* * Copyright (c) 2003 Tobias Weingartner @@ -190,7 +190,7 @@ ebpb: .long 16 /* hidden sectors */ .word 0 /* physical disk */ .byte 0x29 /* signature, needed by NT */ .space 4, 0 /* volume serial number */ - .ascii "UNIX LABEL" + .asciz "UNIX LABEL" .asciz "UFS 4.4" /* boot code */ |