catch all source-file transitions so rsym data has the correct file name
Modified: trunk/reactos/tools/rsym.c

Modified: trunk/reactos/tools/rsym.c
--- trunk/reactos/tools/rsym.c	2005-11-25 22:30:38 UTC (rev 19579)
+++ trunk/reactos/tools/rsym.c	2005-11-25 22:41:31 UTC (rev 19580)
@@ -41,7 +41,7 @@
     }
 
   return 0;
-} 
+}
 
 static int
 GetStabInfo(void *FileData, PIMAGE_FILE_HEADER PEFileHeader,
@@ -169,6 +169,8 @@
       switch (StabEntry[i].n_type)
         {
           case N_SO:
+          case N_SOL:
+          case N_BINCL:
             Name = (char *) StabStringsBase + StabEntry[i].n_strx;
             if (StabStringsLength < StabEntry[i].n_strx
                 ||'\0' == *Name || '/' == Name[strlen(Name) - 1]