summaryrefslogtreecommitdiff
path: root/release/sysinstall/dispatch.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1997-06-12 07:35:09 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1997-06-12 07:35:09 +0000
commit21e8b4e9b699989c62dc28c3ef18d556679b955b (patch)
tree16298adbeec39635eef031a428c616ee98c64def /release/sysinstall/dispatch.c
parent6b412e17f747b3eb08763d2a3e5756f8819d8a87 (diff)
Notes
Diffstat (limited to 'release/sysinstall/dispatch.c')
-rw-r--r--release/sysinstall/dispatch.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/release/sysinstall/dispatch.c b/release/sysinstall/dispatch.c
index 1cce472de8c5..c81abac36710 100644
--- a/release/sysinstall/dispatch.c
+++ b/release/sysinstall/dispatch.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: dispatch.c,v 1.5.2.7 1997/05/22 04:10:06 jkh Exp $
+ * $Id: dispatch.c,v 1.5.2.8 1997/06/06 13:01:03 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -144,6 +144,8 @@ dispatchCommand(char *str)
/* If it's got a `=' sign in there, assume it's a variable setting */
if (index(str, '=')) {
+ if (isDebug())
+ msgDebug("dispatch: setting variable `%s'\n", str);
variable_set(str);
i = DITEM_SUCCESS;
}
@@ -151,6 +153,8 @@ dispatchCommand(char *str)
/* A command might be a pathname if it's encoded in argv[0], which we also support */
if ((cp = rindex(str, '/')) != NULL)
str = cp + 1;
+ if (isDebug())
+ msgDebug("dispatch: calling resword `%s'\n", str);
if (!call_possible_resword(str, NULL, &i)) {
msgNotify("Warning: No such command ``%s''", str);
i = DITEM_FAILURE;