diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-07-08 08:54:36 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-07-08 08:54:36 +0000 |
commit | cf1647cd2fd785ffdd4872e03dd8836d010af5f2 (patch) | |
tree | 412d8ec8d51ea1577e0884b928bfc378d1f29f28 /release/sysinstall/tape.c | |
parent | 502ba6e4a88ba3af76f4f20255eeb64f3e6b4989 (diff) |
Whoops! Now that I'm decompressing docs into /tmp, it's important to
make sure that /tmp is there first! :-) While I'm at it, clean up the
somewhat inexplicably bogus Mkdir() function.
Notes
Notes:
svn path=/head/; revision=17005
Diffstat (limited to 'release/sysinstall/tape.c')
-rw-r--r-- | release/sysinstall/tape.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/sysinstall/tape.c b/release/sysinstall/tape.c index 166c7864c2dc..e6111130601c 100644 --- a/release/sysinstall/tape.c +++ b/release/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.10 1996/04/13 13:32:11 jkh Exp $ + * $Id: tape.c,v 1.11 1996/04/23 01:29:34 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -58,7 +58,7 @@ mediaInitTape(Device *dev) return TRUE; msgDebug("Tape init routine called for %s (private dir is %s)\n", dev->name, dev->private); - Mkdir(dev->private, NULL); + Mkdir(dev->private); if (chdir(dev->private)) return FALSE; /* We know the tape is already in the drive, so go for it */ |