Changeset 609 for branches/GNU/src/binutils/bfd/vms-hdr.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/bfd/vms-hdr.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* vms-hdr.c -- BFD back-end for VMS/VAX (openVMS/VAX) and 2 2 EVAX (openVMS/Alpha) files. 3 Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. 3 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002 4 Free Software Foundation, Inc. 4 5 5 6 HDR record handling functions … … 25 26 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 26 27 27 #include <ctype.h>28 29 28 #include "bfd.h" 29 #include "bfdver.h" 30 30 #include "sysdep.h" 31 31 #include "bfdlink.h" 32 #include "safe-ctype.h" 32 33 #include "libbfd.h" 33 34 … … 37 38 #include <alloca.h> 38 39 #endif 40 41 static unsigned char *get_vms_time_string PARAMS ((void)); 42 43 39 44 /*---------------------------------------------------------------------------*/ 40 45 … … 300 305 while (*fptr != 0) 301 306 { 302 if (islower (*fptr)) 303 *fptr = toupper (*fptr); 307 *fptr = TOUPPER (*fptr); 304 308 fptr++; 305 309 if ((*fptr == ';') … … 312 316 _bfd_vms_output_counted (abfd, "NONAME"); 313 317 314 _bfd_vms_output_counted (abfd, BFD_VERSION );318 _bfd_vms_output_counted (abfd, BFD_VERSION_STRING); 315 319 _bfd_vms_output_dump (abfd, get_vms_time_string (), 17); 316 320 _bfd_vms_output_fill (abfd, 0, 17); … … 344 348 } 345 349 346 _bfd_vms_output_dump (abfd, (unsigned char *)symbol->name, strlen (symbol->name)); 350 _bfd_vms_output_dump (abfd, (unsigned char *) symbol->name, 351 (int) strlen (symbol->name)); 347 352 if (had_case) 348 353 break; … … 405 410 return -1; 406 411 } 407 PRIV(eom_data).eom_has_transfer = false;412 PRIV(eom_data).eom_has_transfer = FALSE; 408 413 if (PRIV(rec_size) > 10) 409 414 { 410 PRIV(eom_data).eom_has_transfer = true;415 PRIV(eom_data).eom_has_transfer = TRUE; 411 416 PRIV(eom_data).eom_b_tfrflg = *(vms_rec + 9); 412 417 PRIV(eom_data).eom_l_psindx = bfd_getl32 (vms_rec + 12); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.