[BACK]Return to elf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / nm

Diff for /src/usr.bin/nm/elf.c between version 1.22 and 1.23

version 1.22, 2013/11/13 06:37:24 version 1.23, 2013/11/26 13:19:07
Line 411 
Line 411 
         if (np->n_type != N_UNDF && ELF_ST_BIND(sym->st_info) != STB_LOCAL) {          if (np->n_type != N_UNDF && ELF_ST_BIND(sym->st_info) != STB_LOCAL) {
                 np->n_type |= N_EXT;                  np->n_type |= N_EXT;
                 if (np->n_other)                  if (np->n_other)
                         np->n_other = toupper(np->n_other);                          np->n_other = toupper((unsigned char)np->n_other);
         }          }
   
         return (0);          return (0);

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23