diff options
author | peter <peter@FreeBSD.org> | 1995-12-07 10:34:59 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1995-12-07 10:34:59 +0000 |
commit | 03382d7ccd5ed3c8bf17b6719df445c2d9c5dea6 (patch) | |
tree | 3d31cd880ab6a9af9ad3ab3c6313d70e1c542d60 /release/sysinstall/globals.c | |
parent | 53a232b78efd4ef6c84ff8047a3a43c3d8cf0a25 (diff) | |
download | FreeBSD-src-03382d7ccd5ed3c8bf17b6719df445c2d9c5dea6.zip FreeBSD-src-03382d7ccd5ed3c8bf17b6719df445c2d9c5dea6.tar.gz |
Update the -current sources from the 2.1 branch.
Approved (in spirit) by: jkh
Diffstat (limited to 'release/sysinstall/globals.c')
-rw-r--r-- | release/sysinstall/globals.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/release/sysinstall/globals.c b/release/sysinstall/globals.c index 2041024..bc303e5 100644 --- a/release/sysinstall/globals.c +++ b/release/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; } |