aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/variable.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-05-20 10:33:14 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-05-20 10:33:14 +0000
commitf10eb488f667ad2b0e855fcc2ac3747e787f9695 (patch)
treefe34e20c28206a242583f4afa84e1c0ce9c247b8 /usr.sbin/sysinstall/variable.c
parent2cf252e087dabd4f80ff2f6bec8b0313b707dd0b (diff)
Notes
Diffstat (limited to 'usr.sbin/sysinstall/variable.c')
-rw-r--r--usr.sbin/sysinstall/variable.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/variable.c b/usr.sbin/sysinstall/variable.c
index 5a64f910469e2..993828cd487f5 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);
}