diff options
author | Edith Epstein <eepstein@cygnus> | 1999-01-12 22:03:58 +0000 |
---|---|---|
committer | Edith Epstein <eepstein@cygnus> | 1999-01-12 22:03:58 +0000 |
commit | 9897afc639997cec3a614dea1ec8a1a095cedb51 (patch) | |
tree | 504921b926654fbce7c6438ded8eb2211960125e /gdb/inftarg.c | |
parent | 9e507b690e6cb92ae1afb64bc1d0c18862af40f4 (diff) | |
download | gdb-9897afc639997cec3a614dea1ec8a1a095cedb51.zip gdb-9897afc639997cec3a614dea1ec8a1a095cedb51.tar.gz gdb-9897afc639997cec3a614dea1ec8a1a095cedb51.tar.bz2 |
Tue Jan 12 16:54:37 1999 Edith Epstein <eepstein@sophia.cygnus.com>
* gdb.texinfo (Shell Commands): fixed messages about shell usage.
HP was insisting on C shell. Now all UNIX platforms have the
same message. removed @ifset HPPA and @ifclear HPPA
Tue Jan 12 17:00:00 1999 Edith Epstein <eepstein@sophia.cygnus.com>
* inftarg.c (child_create_inferior): fixed HPUXHPPA specific
call to fork_inferior. The shell param is now NULL.
Diffstat (limited to 'gdb/inftarg.c')
-rw-r--r-- | gdb/inftarg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/inftarg.c b/gdb/inftarg.c index 9439a9f..592b5d9 100644 --- a/gdb/inftarg.c +++ b/gdb/inftarg.c @@ -571,7 +571,7 @@ child_create_inferior (exec_file, allargs, env) else shell_file = tryname; - fork_inferior (exec_file, allargs, env, ptrace_me, ptrace_him, pre_fork_inferior, shell_file); + fork_inferior (exec_file, allargs, env, ptrace_me, ptrace_him, pre_fork_inferior, NULL); #else fork_inferior (exec_file, allargs, env, ptrace_me, ptrace_him, NULL, NULL); #endif |