summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade/dispatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/sade/dispatch.c')
-rw-r--r--usr.sbin/sade/dispatch.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/sade/dispatch.c b/usr.sbin/sade/dispatch.c
index ebf0d4e..5534b18 100644
--- a/usr.sbin/sade/dispatch.c
+++ b/usr.sbin/sade/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.2 1996/06/08 09:08:38 jkh Exp $
+ * $Id: dispatch.c,v 1.3 1996/06/26 09:09:27 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -114,13 +114,13 @@ dispatchCommand(char *str)
return DITEM_FAILURE;
}
/* A command might be a pathname if it's encoded in argv[0], as we also support */
- if ((cp = index(str, '/')) != NULL)
- str = cp + 1;
if (index(str, '=')) {
variable_set(str);
return DITEM_SUCCESS;
}
- else if (!call_possible_resword(str, NULL, &i)) {
+ else if ((cp = index(str, '/')) != NULL)
+ str = cp + 1;
+ if (!call_possible_resword(str, NULL, &i)) {
msgConfirm("No such command: %s", str);
return DITEM_FAILURE;
}
OpenPOWER on IntegriCloud