summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade/system.c
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/sade/system.c
parent14f2cd7f1f8671a4b9d087659654425235793e7a (diff)
downloadFreeBSD-src-8f8ca5b92498bb21a58ac50274ed1dfe20ff3315.zip
FreeBSD-src-8f8ca5b92498bb21a58ac50274ed1dfe20ff3315.tar.gz
Fix incorrect initial state for two variables.
Diffstat (limited to 'usr.sbin/sade/system.c')
-rw-r--r--usr.sbin/sade/system.c4
1 files changed, 2 insertions, 2 deletions
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) {
OpenPOWER on IntegriCloud