diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-07-02 10:57:58 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-07-02 10:57:58 +0000 |
| commit | fdc0e7826c24e769da607cee145152d0ac6bea2f (patch) | |
| tree | e2c254c0b092f2f3faaa2cacddfc46a4c3eff8f1 /usr.sbin/sysinstall/dispatch.c | |
| parent | 9accf5ed92548e07f36b978fb04b50861b4680f1 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sysinstall/dispatch.c')
| -rw-r--r-- | usr.sbin/sysinstall/dispatch.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/sysinstall/dispatch.c b/usr.sbin/sysinstall/dispatch.c index ebf0d4efc914..5534b18639fc 100644 --- a/usr.sbin/sysinstall/dispatch.c +++ b/usr.sbin/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.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; } |
