diff options
Diffstat (limited to 'usr.sbin/sysinstall/tape.c')
-rw-r--r-- | usr.sbin/sysinstall/tape.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/tape.c b/usr.sbin/sysinstall/tape.c index 1b9d93c..bf72d8b 100644 --- a/usr.sbin/sysinstall/tape.c +++ b/usr.sbin/sysinstall/tape.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated to essentially a complete rewrite. * - * $Id: tape.c,v 1.5.2.6 1995/06/05 15:33:09 jkh Exp $ + * $Id: tape.c,v 1.6 1995/06/11 19:30:11 rgrimes Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -65,7 +65,7 @@ mediaInitTape(Device *dev) if (!strcmp(dev->name, "ft0")) i = vsystem("ft | cpio -iduVm -H tar"); else - i = vsystem("cpio -iBduVm -H tar -I %s", dev->devname); + i = vsystem("cpio -iduVm -H tar -I %s", dev->devname); if (!i) { tapeInitted = TRUE; return TRUE; |