From f10eb488f667ad2b0e855fcc2ac3747e787f9695 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Sat, 20 May 1995 10:33:14 +0000 Subject: 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. --- usr.sbin/sysinstall/variable.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'usr.sbin/sysinstall/variable.c') diff --git a/usr.sbin/sysinstall/variable.c b/usr.sbin/sysinstall/variable.c index 5a64f910469e..993828cd487f 100644 --- a/usr.sbin/sysinstall/variable.c +++ b/usr.sbin/sysinstall/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); } -- cgit v1.3