aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/command.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-05-20 13:24:35 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-05-20 13:24:35 +0000
commit6387e9b0581895d0d82d4c401e531c634cb0d6e4 (patch)
tree0c067b1e3b7015ba4061838cd2ab4551209719ea /usr.sbin/sysinstall/command.c
parent7b74963e46e8c56082d39150604af0404a67f486 (diff)
Notes
Diffstat (limited to 'usr.sbin/sysinstall/command.c')
-rw-r--r--usr.sbin/sysinstall/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/command.c b/usr.sbin/sysinstall/command.c
index 4b84376efc00b..17289640f5cd1 100644
--- a/usr.sbin/sysinstall/command.c
+++ b/usr.sbin/sysinstall/command.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: command.c,v 1.7 1995/05/18 23:36:21 gpalmer Exp $
+ * $Id: command.c,v 1.8 1995/05/19 21:30:32 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -165,7 +165,7 @@ command_execute(void)
for (j = 0; j < commandStack[i]->ncmds; j++) {
/* If it's a shell command, run system on it */
if (commandStack[i]->cmds[j].type == CMD_SHELL) {
- msgNotify("Executing command: %s", commandStack[i]->cmds[j].ptr);
+ msgNotify("Doing %s", commandStack[i]->cmds[j].ptr);
ret = vsystem((char *)commandStack[i]->cmds[j].ptr);
msgDebug("Command `%s' returns status %d\n", commandStack[i]->cmds[j].ptr, ret);
}