diff options
Diffstat (limited to 'usr.sbin/sysinstall/dispatch.c')
-rw-r--r-- | usr.sbin/sysinstall/dispatch.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/dispatch.c b/usr.sbin/sysinstall/dispatch.c index 8a51adea9a2d..ebf0d4efc914 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.1 1996/05/16 11:47:27 jkh Exp $ + * $Id: dispatch.c,v 1.2 1996/06/08 09:08:38 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -107,12 +107,16 @@ int dispatchCommand(char *str) { int i; + char *cp; if (!str || !*str) { msgConfirm("Null or zero-length string passed to dispatchCommand"); return DITEM_FAILURE; } - else if (index(str, '=')) { + /* 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; } |