aboutsummaryrefslogtreecommitdiff
path: root/release/sysinstall/media.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-07-08 08:54:36 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-07-08 08:54:36 +0000
commitcf1647cd2fd785ffdd4872e03dd8836d010af5f2 (patch)
tree412d8ec8d51ea1577e0884b928bfc378d1f29f28 /release/sysinstall/media.c
parent502ba6e4a88ba3af76f4f20255eeb64f3e6b4989 (diff)
Notes
Diffstat (limited to 'release/sysinstall/media.c')
-rw-r--r--release/sysinstall/media.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/sysinstall/media.c b/release/sysinstall/media.c
index 421eba685369..1d6ed9793b91 100644
--- a/release/sysinstall/media.c
+++ b/release/sysinstall/media.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: media.c,v 1.44 1996/07/02 01:03:46 jkh Exp $
+ * $Id: media.c,v 1.45 1996/07/05 08:35:58 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -412,7 +412,7 @@ mediaExtractDistBegin(char *dir, int *fd, int *zpid, int *cpid)
if (!dir)
dir = "/";
- Mkdir(dir, NULL);
+ Mkdir(dir);
chdir(dir);
pipe(pfd);
pipe(qfd);
@@ -495,7 +495,7 @@ mediaExtractDist(char *dir, int fd)
if (!dir)
dir = "/";
- Mkdir(dir, NULL);
+ Mkdir(dir);
chdir(dir);
pipe(pfd);
zpid = fork();