summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1999-02-14 21:26:29 +0000
committerjkh <jkh@FreeBSD.org>1999-02-14 21:26:29 +0000
commit8f8ca5b92498bb21a58ac50274ed1dfe20ff3315 (patch)
treef65a88f632a145d5b4eda035b6361ef7c7c21549 /usr.sbin
parent14f2cd7f1f8671a4b9d087659654425235793e7a (diff)
downloadFreeBSD-src-8f8ca5b92498bb21a58ac50274ed1dfe20ff3315.zip
FreeBSD-src-8f8ca5b92498bb21a58ac50274ed1dfe20ff3315.tar.gz
Fix incorrect initial state for two variables.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/sade/install.c4
-rw-r--r--usr.sbin/sade/system.c4
-rw-r--r--usr.sbin/sysinstall/install.c4
-rw-r--r--usr.sbin/sysinstall/system.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c
index 21f3375..63edd5c 100644
--- a/usr.sbin/sade/install.c
+++ b/usr.sbin/sade/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/usr.sbin/sade/system.c b/usr.sbin/sade/system.c
index d7f35ee..ee0aba0 100644
--- a/usr.sbin/sade/system.c
+++ b/usr.sbin/sade/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) {
diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c
index 21f3375..63edd5c 100644
--- a/usr.sbin/sysinstall/install.c
+++ b/usr.sbin/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/usr.sbin/sysinstall/system.c b/usr.sbin/sysinstall/system.c
index d7f35ee..ee0aba0 100644
--- a/usr.sbin/sysinstall/system.c
+++ b/usr.sbin/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) {
OpenPOWER on IntegriCloud