aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/globals.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1995-12-07 10:34:59 +0000
committerPeter Wemm <peter@FreeBSD.org>1995-12-07 10:34:59 +0000
commit40b0c0d936b1fb9878b178e19028ab6a045fe8bc (patch)
tree3d31cd880ab6a9af9ad3ab3c6313d70e1c542d60 /usr.sbin/sysinstall/globals.c
parentcde694287a635a30da358e47c21ed4eff6e8d0e5 (diff)
downloadsrc-40b0c0d936b1fb9878b178e19028ab6a045fe8bc.tar.gz
src-40b0c0d936b1fb9878b178e19028ab6a045fe8bc.zip
Update the -current sources from the 2.1 branch.
Approved (in spirit) by: jkh
Notes
Notes: svn path=/head/; revision=12661
Diffstat (limited to 'usr.sbin/sysinstall/globals.c')
-rw-r--r--usr.sbin/sysinstall/globals.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.sbin/sysinstall/globals.c b/usr.sbin/sysinstall/globals.c
index 2041024ef4ae..bc303e58d015 100644
--- a/usr.sbin/sysinstall/globals.c
+++ b/usr.sbin/sysinstall/globals.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: globals.c,v 1.9.2.2 1995/06/05 03:15:38 jkh Exp $
+ * $Id: globals.c,v 1.10.2.1 1995/10/21 14:06:41 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -55,9 +55,7 @@ Boolean ColorDisplay;
Boolean OnVTY;
Variable *VarHead; /* The head of the variable chain */
Device *mediaDevice; /* Where we're installing from */
-unsigned int OptFlags; /* Option flags */
int BootMgr;
-char *InstallPrefix; /* Always install under here */
/*
* Yes, I know some of these are already automatically initialized as
@@ -73,6 +71,4 @@ globalsInit(void)
VarHead = NULL;
mediaDevice = NULL;
RunningAsInit = FALSE;
- OptFlags = 0;
- InstallPrefix = NULL;
}