Add the -file-list-exec-source-files command to MI.

This commit is contained in:
Bob Rossi 2004-06-10 20:05:45 +00:00
parent 239ae8c755
commit 57c22c6ce1
13 changed files with 228 additions and 49 deletions

View file

@ -181,7 +181,7 @@ got_symtab:
if (full_path != NULL)
{
const char *fp = symtab_to_filename (s);
const char *fp = symtab_to_fullname (s);
if (FILENAME_CMP (full_path, fp) == 0)
{
return s;
@ -190,7 +190,7 @@ got_symtab:
if (real_path != NULL)
{
char *rp = gdb_realpath (symtab_to_filename (s));
char *rp = gdb_realpath (symtab_to_fullname (s));
make_cleanup (xfree, rp);
if (FILENAME_CMP (real_path, rp) == 0)
{