gdb/ChangeLog:
* dwarf2read.c (psymtab_include_file_name): Replace call to strcmp
by call to FILENAME_CMP.
+2010-10-26 Joel Brobecker <brobecker@adacore.com>
+
+ * dwarf2read.c (psymtab_include_file_name): Replace call to strcmp
+ by call to FILENAME_CMP.
+
2010-10-26 Joel Brobecker <brobecker@adacore.com>
* dictionary.c (dict_hash): Move assignment out of if condition.
pst_filename = copied_name;
}
- file_is_pst = strcmp (include_name_to_compare, pst_filename) == 0;
+ file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
if (include_name_to_compare != include_name)
xfree (include_name_to_compare);