aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/network.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 /usr.sbin/sysinstall/network.c
parent502ba6e4a88ba3af76f4f20255eeb64f3e6b4989 (diff)
downloadsrc-cf1647cd2fd785ffdd4872e03dd8836d010af5f2.tar.gz
src-cf1647cd2fd785ffdd4872e03dd8836d010af5f2.zip
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 'usr.sbin/sysinstall/network.c')
-rw-r--r--usr.sbin/sysinstall/network.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/sysinstall/network.c b/usr.sbin/sysinstall/network.c
index 75b8474be99f..b8ac7d66ca21 100644
--- a/usr.sbin/sysinstall/network.c
+++ b/usr.sbin/sysinstall/network.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: network.c,v 1.12 1996/04/28 20:54:04 jkh Exp $
+ * $Id: network.c,v 1.13 1996/06/12 17:09:34 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -175,9 +175,9 @@ startPPP(Device *devp)
char myaddr[16], provider[16], speed[16];
/* These are needed to make ppp work */
- Mkdir("/var/log", NULL);
- Mkdir("/var/spool/lock", NULL);
- Mkdir("/etc/ppp", NULL);
+ Mkdir("/var/log");
+ Mkdir("/var/spool/lock");
+ Mkdir("/etc/ppp");
if (!variable_get(VAR_SERIAL_SPEED))
variable_set2(VAR_SERIAL_SPEED, "115200");