diff options
author | jkh <jkh@FreeBSD.org> | 1995-02-02 05:49:06 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-02-02 05:49:06 +0000 |
commit | 9fa893b66455756e0acaef1adb51e03ebd4c99ab (patch) | |
tree | 7169773f6b59dbed76ed7109bb26acae6e878e92 /sbin | |
parent | 985dab5887e02ea81058d529a561e86437720b00 (diff) | |
download | FreeBSD-src-9fa893b66455756e0acaef1adb51e03ebd4c99ab.zip FreeBSD-src-9fa893b66455756e0acaef1adb51e03ebd4c99ab.tar.gz |
Mkdir() now takes two flags.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/sysinstall/stage2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/sysinstall/stage2.c b/sbin/sysinstall/stage2.c index 1735f29..06d9c49 100644 --- a/sbin/sysinstall/stage2.c +++ b/sbin/sysinstall/stage2.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: stage2.c,v 1.22 1995/01/30 03:19:54 phk Exp $ + * $Id: stage2.c,v 1.23 1995/02/02 05:35:36 phk Exp $ * */ @@ -83,7 +83,7 @@ stage2() MountUfs(p, dbuf, 1, 0); continue; } - Mkdir(dbuf); + Mkdir(dbuf, FALSE); } Mkdir("/mnt/etc", TRUE); |