diff options
Diffstat (limited to 'sys/arch/i386/stand/boot/cmd.c')
-rw-r--r-- | sys/arch/i386/stand/boot/cmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/boot/cmd.c b/sys/arch/i386/stand/boot/cmd.c index 84f52e813cf..11a96c014c3 100644 --- a/sys/arch/i386/stand/boot/cmd.c +++ b/sys/arch/i386/stand/boot/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.15 1997/05/31 15:48:25 mickey Exp $ */ +/* $OpenBSD: cmd.c,v 1.16 1997/06/06 16:26:56 kstailey Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -272,7 +272,7 @@ readline(buf, to) break; case '\b': if (p > buf) { - putchar('\b'); + putchar('\177'); p--; pe--; } |