* config/tc-ppc.c (ppc_comm): Accept optional fourth .lcomm
[deliverable/binutils-gdb.git] / bfd / corefile.c
index 605be8d33da1569edab9c2abc9b0bfa9cc7b58dc..8d6293849f7eac77a91ba49e451b14d4d5745cbd 100644 (file)
@@ -169,7 +169,7 @@ generic_core_file_matches_executable_p (bfd *core_bfd, bfd *exec_bfd)
      of the const char * returned by bfd_core_file_failing_command to a
      non-const char *.  In this case, the assignement does not lead to
      breaking the const, as we're only reading the string.  */
-     
+
   core = (char *) bfd_core_file_failing_command (core_bfd);
   if (core == NULL)
     return TRUE;
@@ -185,7 +185,7 @@ generic_core_file_matches_executable_p (bfd *core_bfd, bfd *exec_bfd)
   last_slash = strrchr (exec, '/');
   if (last_slash != NULL)
     exec = last_slash + 1;
-  
-  return strcmp (exec, core) == 0;
+
+  return filename_cmp (exec, core) == 0;
 }
 
This page took 0.034481 seconds and 4 git commands to generate.