summaryrefslogtreecommitdiffstats
path: root/sbin/newfs_msdos
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1999-01-03 02:18:58 +0000
committerjkh <jkh@FreeBSD.org>1999-01-03 02:18:58 +0000
commit468764485dac67e8142ed504f2ee139f9fe42f50 (patch)
tree09254dc549f4b987f7bd42b29f6ef8f3d013d7d7 /sbin/newfs_msdos
parenteaf34b61debcf9c20d77082b95c926d76ec3c403 (diff)
downloadFreeBSD-src-468764485dac67e8142ed504f2ee139f9fe42f50.zip
FreeBSD-src-468764485dac67e8142ed504f2ee139f9fe42f50.tar.gz
Clean up some more residual /usr/mdec references. I left all the
extra rbootd/boot rom cruft pointing at /usr/mdec since it either doesn't exist or doesn't work anyway, so who cares? :)
Diffstat (limited to 'sbin/newfs_msdos')
-rw-r--r--sbin/newfs_msdos/newfs_msdos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/newfs_msdos/newfs_msdos.c b/sbin/newfs_msdos/newfs_msdos.c
index bf6fca2..dbcb4d1 100644
--- a/sbin/newfs_msdos/newfs_msdos.c
+++ b/sbin/newfs_msdos/newfs_msdos.c
@@ -27,7 +27,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: newfs_msdos.c,v 1.5 1998/10/17 12:44:55 bde Exp $";
+ "$Id: newfs_msdos.c,v 1.6 1998/12/07 14:09:17 rnordier Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -427,7 +427,7 @@ main(int argc, char *argv[])
if (opt_B) {
bname = opt_B;
if (!strchr(bname, '/')) {
- snprintf(buf, sizeof(buf), "/usr/mdec/%s", bname);
+ snprintf(buf, sizeof(buf), "/boot/%s", bname);
if (!(bname = strdup(buf)))
err(1, NULL);
}
OpenPOWER on IntegriCloud