From cee74ce38920b8f7c2ff067518c0703bb0de870e Mon Sep 17 00:00:00 2001 From: jkh Date: Sat, 19 Feb 2000 23:22:22 +0000 Subject: If user says they're in the USA, record that fact in /etc/make.conf --- usr.sbin/sade/globals.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'usr.sbin/sade/globals.c') diff --git a/usr.sbin/sade/globals.c b/usr.sbin/sade/globals.c index b12dbd8..c47c3a0 100644 --- a/usr.sbin/sade/globals.c +++ b/usr.sbin/sade/globals.c @@ -47,6 +47,7 @@ Boolean RunningAsInit; /* Are we running as init? */ Boolean DialogActive; /* Is libdialog initialized? */ Boolean ColorDisplay; /* Are we on a color display? */ Boolean OnVTY; /* Are we on a VTY? */ +Boolean USAResident; /* Are we cryptographically challenged? */ Variable *VarHead; /* The head of the variable chain */ Device *mediaDevice; /* Where we're installing from */ int BootMgr; /* Which boot manager we're using */ @@ -68,4 +69,5 @@ globalsInit(void) VarHead = NULL; mediaDevice = NULL; RunningAsInit = FALSE; + USAResident = TRUE; } -- cgit v1.1