summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade/variable.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-05-20 10:33:14 +0000
committerjkh <jkh@FreeBSD.org>1995-05-20 10:33:14 +0000
commit3b6a142d8de0c7c6fc16424823c1c574c26a6019 (patch)
treefe34e20c28206a242583f4afa84e1c0ce9c247b8 /usr.sbin/sade/variable.c
parentb00009a29ac9fc1ba5f3ce41b8d992a4c9b88e5e (diff)
downloadFreeBSD-src-3b6a142d8de0c7c6fc16424823c1c574c26a6019.zip
FreeBSD-src-3b6a142d8de0c7c6fc16424823c1c574c26a6019.tar.gz
1. Fix a pathological bug I introduced in msgInfo(). Right idea, wrong
implementation. 2. Totally rework device registration. It's about half the size and more powerful now. 3. Add DOS discovery. 4. Start filling in some of the strategy routines. 5. Another clean-up pass over the menus. 6. Make wizard code use Disk typedef. If I can get the first strategy routine finished tonite, we should have a working install (from ftp, at least) this weekend.
Diffstat (limited to 'usr.sbin/sade/variable.c')
-rw-r--r--usr.sbin/sade/variable.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/sade/variable.c b/usr.sbin/sade/variable.c
index 5a64f91..993828c 100644
--- a/usr.sbin/sade/variable.c
+++ b/usr.sbin/sade/variable.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.2 1995/04/27 18:03:53 jkh Exp $
+ * $Id: variable.c,v 1.1 1995/05/01 21:56:32 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -61,6 +61,7 @@ variable_set(char *var)
newvar->next = VarHead;
VarHead = newvar;
setenv(newvar->name, newvar->value, 1);
+ msgInfo("Set %s to %s", newvar->name, newvar->value);
}
void
@@ -77,4 +78,5 @@ variable_set2(char *var, char *value)
newvar->next = VarHead;
VarHead = newvar;
setenv(newvar->name, newvar->value, 1);
+ msgInfo("Set %s to %s", newvar->name, newvar->value);
}
OpenPOWER on IntegriCloud