* cli/cli-cmds.c (shell_escape): Silence warnings from old

compilers.
This commit is contained in:
Daniel Jacobowitz 2003-06-22 04:23:52 +00:00
parent 945d18fb9c
commit 30e942055c
2 changed files with 16 additions and 10 deletions

View file

@ -1,3 +1,8 @@
2003-06-22 Daniel Jacobowitz <drow@mvista.com>
* cli/cli-cmds.c (shell_escape): Silence warnings from old
compilers.
2003-06-21 Daniel Jacobowitz <drow@mvista.com> 2003-06-21 Daniel Jacobowitz <drow@mvista.com>
* c-valprint.c (c_value_print): Add VALUE_OFFSET to the address * c-valprint.c (c_value_print): Add VALUE_OFFSET to the address

View file

@ -499,6 +499,9 @@ shell_escape (char *arg, int from_tty)
#endif #endif
#else /* Can fork. */ #else /* Can fork. */
int rc, status, pid; int rc, status, pid;
if ((pid = vfork ()) == 0)
{
char *p, *user_shell; char *p, *user_shell;
if ((user_shell = (char *) getenv ("SHELL")) == NULL) if ((user_shell = (char *) getenv ("SHELL")) == NULL)
@ -510,8 +513,6 @@ shell_escape (char *arg, int from_tty)
else else
p++; /* Get past '/' */ p++; /* Get past '/' */
if ((pid = vfork ()) == 0)
{
if (!arg) if (!arg)
execl (user_shell, p, 0); execl (user_shell, p, 0);
else else