diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-05-18 22:00:01 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-05-18 22:00:01 +0000 |
| commit | 18f4c72169271246215b8d3492aff5b71b8b150b (patch) | |
| tree | f11109824afca67b82f24061c1508ef9c9e5e155 | |
| parent | b8458cd5867319b21a320b2bb14f39d9035c918e (diff) | |
Notes
| -rw-r--r-- | release/sysinstall/install.c | 6 | ||||
| -rw-r--r-- | usr.sbin/sade/install.c | 6 | ||||
| -rw-r--r-- | usr.sbin/sysinstall/install.c | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c index 781b53fd795c2..3e0ca910d9988 100644 --- a/release/sysinstall/install.c +++ b/release/sysinstall/install.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: install.c,v 1.26 1995/05/18 18:02:30 jkh Exp $ + * $Id: install.c,v 1.27 1995/05/18 21:58:33 phk Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -116,10 +116,10 @@ installCommit(char *str) int ret; msgNotify("Running bad block scan on partition %s", c1->name); - ret = vsystem("bad144 -v /dev/%s 1234", c1->name); + ret = vsystem("bad144 -v /dev/r%s 1234", c1->name); if (ret) msgConfirm("Bad144 init on %s returned status of %d!", c1->name, ret); - ret = vsystem("bad144 -v -s /dev/%s", c1->name); + ret = vsystem("bad144 -v -s /dev/r%s", c1->name); if (ret) msgConfirm("Bad144 scan on %s returned status of %d!", c1->name, ret); } diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c index 781b53fd795c2..3e0ca910d9988 100644 --- a/usr.sbin/sade/install.c +++ b/usr.sbin/sade/install.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: install.c,v 1.26 1995/05/18 18:02:30 jkh Exp $ + * $Id: install.c,v 1.27 1995/05/18 21:58:33 phk Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -116,10 +116,10 @@ installCommit(char *str) int ret; msgNotify("Running bad block scan on partition %s", c1->name); - ret = vsystem("bad144 -v /dev/%s 1234", c1->name); + ret = vsystem("bad144 -v /dev/r%s 1234", c1->name); if (ret) msgConfirm("Bad144 init on %s returned status of %d!", c1->name, ret); - ret = vsystem("bad144 -v -s /dev/%s", c1->name); + ret = vsystem("bad144 -v -s /dev/r%s", c1->name); if (ret) msgConfirm("Bad144 scan on %s returned status of %d!", c1->name, ret); } diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 781b53fd795c2..3e0ca910d9988 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/sysinstall/install.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: install.c,v 1.26 1995/05/18 18:02:30 jkh Exp $ + * $Id: install.c,v 1.27 1995/05/18 21:58:33 phk Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -116,10 +116,10 @@ installCommit(char *str) int ret; msgNotify("Running bad block scan on partition %s", c1->name); - ret = vsystem("bad144 -v /dev/%s 1234", c1->name); + ret = vsystem("bad144 -v /dev/r%s 1234", c1->name); if (ret) msgConfirm("Bad144 init on %s returned status of %d!", c1->name, ret); - ret = vsystem("bad144 -v -s /dev/%s", c1->name); + ret = vsystem("bad144 -v -s /dev/r%s", c1->name); if (ret) msgConfirm("Bad144 scan on %s returned status of %d!", c1->name, ret); } |
