aboutsummaryrefslogtreecommitdiff
path: root/release/sysinstall/misc.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-03-18 15:28:10 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-03-18 15:28:10 +0000
commit40ae4689df125baf0fdf2894e11e1037a4136f40 (patch)
treebbbb1da098bedb9748f8fa6faa46c10cb2c30d4a /release/sysinstall/misc.c
parent198c323e44f1d23aacd7d28f28b6b9af3b4d3300 (diff)
downloadsrc-40ae4689df125baf0fdf2894e11e1037a4136f40.tar.gz
src-40ae4689df125baf0fdf2894e11e1037a4136f40.zip
Lots of fixes:
1. Revamp package installer to use new dependency lists and also pkg_add's new `read from stdin' mode to prevent a copy of the package from hitting the disk unnecessarily. 2. More fixes for running "not as init" - don't get upset if CDROM already mounted, do the right thing instead. 3. If running as init, assume first-time install and _don't show the (W)rite option in the fdisk screen. 4. Many other little tweaks, some of which will have to wait for fuller testing until I can create a boot floppy (testing certain system-destroying features of sysinstall can be a royal pain). Expect some more commits.
Notes
Notes: svn path=/head/; revision=14670
Diffstat (limited to 'release/sysinstall/misc.c')
-rw-r--r--release/sysinstall/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/sysinstall/misc.c b/release/sysinstall/misc.c
index 6d3730a60eb2..296daf74ae3a 100644
--- a/release/sysinstall/misc.c
+++ b/release/sysinstall/misc.c
@@ -1,7 +1,7 @@
/*
* Miscellaneous support routines..
*
- * $Id: misc.c,v 1.13 1995/12/07 10:34:07 peter Exp $
+ * $Id: misc.c,v 1.14 1996/01/14 21:48:57 phk Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -130,7 +130,7 @@ string_copy(char *s1, char *s2)
}
Boolean
-directoryExists(const char *dirname)
+directory_exists(const char *dirname)
{
DIR *tptr;