summaryrefslogtreecommitdiffstats
path: root/release/sysinstall/network.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-07-08 08:54:36 +0000
committerjkh <jkh@FreeBSD.org>1996-07-08 08:54:36 +0000
commit7e51f09a84728ab85cf82db31aad751f4aca98cb (patch)
tree412d8ec8d51ea1577e0884b928bfc378d1f29f28 /release/sysinstall/network.c
parent824afef0c4ffcf3871a0091dfb4fb8af21888b56 (diff)
downloadFreeBSD-src-7e51f09a84728ab85cf82db31aad751f4aca98cb.zip
FreeBSD-src-7e51f09a84728ab85cf82db31aad751f4aca98cb.tar.gz
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.
Diffstat (limited to 'release/sysinstall/network.c')
-rw-r--r--release/sysinstall/network.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/sysinstall/network.c b/release/sysinstall/network.c
index 75b8474..b8ac7d6 100644
--- a/release/sysinstall/network.c
+++ b/release/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");
OpenPOWER on IntegriCloud