aboutsummaryrefslogtreecommitdiff
path: root/release/sysinstall
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1999-02-14 21:26:29 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1999-02-14 21:26:29 +0000
commit046bfca7732bd1e5dd1aa82f80a5718c3b1e2037 (patch)
tree86d447d7a7f23d8c7f13f3efd4fd3fc2004b298c /release/sysinstall
parentef528b292a1630416ae15147d3beafc08246ce8e (diff)
downloadsrc-046bfca7732bd1e5dd1aa82f80a5718c3b1e2037.tar.gz
src-046bfca7732bd1e5dd1aa82f80a5718c3b1e2037.zip
Fix incorrect initial state for two variables.
Notes
Notes: svn path=/head/; revision=44017
Diffstat (limited to 'release/sysinstall')
-rw-r--r--release/sysinstall/install.c4
-rw-r--r--release/sysinstall/system.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c
index 21f3375df18d..63edd5cde2db 100644
--- a/release/sysinstall/install.c
+++ b/release/sysinstall/install.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: install.c,v 1.226 1999/02/05 22:15:48 jkh Exp $
+ * $Id: install.c,v 1.227 1999/02/09 22:18:10 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -1062,7 +1062,7 @@ installVarDefaults(dialogMenuItem *self)
variable_set2(VAR_BROWSER_PACKAGE, "lynx", 0);
variable_set2(VAR_BROWSER_BINARY, "/usr/local/bin/lynx", 0);
variable_set2(VAR_FTP_STATE, "passive", 0);
- variable_set2(VAR_NFS_SECURE, "YES", 1);
+ variable_set2(VAR_NFS_SECURE, "YES", 0);
variable_set2(VAR_PKG_TMPDIR, "/usr/tmp", 0);
variable_set2(VAR_GATED_PKG, "gated", 0);
variable_set2(VAR_PCNFSD_PKG, "pcnfsd", 0);
diff --git a/release/sysinstall/system.c b/release/sysinstall/system.c
index d7f35eedd213..ee0aba0a092b 100644
--- a/release/sysinstall/system.c
+++ b/release/sysinstall/system.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: system.c,v 1.88 1999/02/05 22:15:52 jkh Exp $
+ * $Id: system.c,v 1.89 1999/02/09 22:18:10 jkh Exp $
*
* Jordan Hubbard
*
@@ -120,7 +120,7 @@ systemInitialize(int argc, char **argv)
/* Initalize various things for a multi-user environment */
if (!gethostname(hname, sizeof hname))
- variable_set2(VAR_HOSTNAME, hname, 1);
+ variable_set2(VAR_HOSTNAME, hname, 0);
}
if (set_termcap() == -1) {