diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-02-16 16:54:20 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-02-16 16:54:20 +0000 |
commit | 0dc1bc8b3fa1b97d82a34494f9d73c0dea6491b2 (patch) | |
tree | 98104c4ac52bfbb713cab55d6f2b943980446bc2 /bfd/aout-adobe.c | |
parent | 4218738722780c7f1a5b7621dac0a77667429c68 (diff) | |
download | gdb-0dc1bc8b3fa1b97d82a34494f9d73c0dea6491b2.zip gdb-0dc1bc8b3fa1b97d82a34494f9d73c0dea6491b2.tar.gz gdb-0dc1bc8b3fa1b97d82a34494f9d73c0dea6491b2.tar.bz2 |
Added 1993 copyrights to files that I have changed in 1993. Some were
missing 1992 copyrights, although they changed in 1992.
Diffstat (limited to 'bfd/aout-adobe.c')
-rw-r--r-- | bfd/aout-adobe.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/aout-adobe.c b/bfd/aout-adobe.c index 6a7fb82..b7627b5 100644 --- a/bfd/aout-adobe.c +++ b/bfd/aout-adobe.c @@ -1,5 +1,5 @@ /* BFD back-end for a.out.adobe binaries. - Copyright 1990, 1991, 1992 Free Software Foundation, Inc. + Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc. Written by Cygnus Support. Based on bout.c. This file is part of BFD, the Binary File Descriptor library. @@ -113,7 +113,7 @@ aout_adobe_object_p (abfd) if (N_BADMAG (anexec)) { targ = getenv ("GNUTARGET"); - if (targ && strcmp (targ, a_out_adobe_vec.name)) + if (targ && !strcmp (targ, a_out_adobe_vec.name)) ; /* Just continue anyway, if specifically set to this format */ else { @@ -135,7 +135,6 @@ aout_adobe_callback (abfd) bfd *abfd; { struct internal_exec *execp = exec_hdr (abfd); - unsigned long bss_start; asection *sect; struct external_segdesc ext[1]; char *section_name; @@ -179,7 +178,7 @@ aout_adobe_callback (abfd) default: fprintf (stderr, "Unknown section type in a.out.adobe file: %x\n", - ext->e_type); + ext->e_type[0]); goto no_more_sections; } @@ -475,6 +474,7 @@ DEFUN(aout_adobe_sizeof_headers,(ignore_abfd, ignore), #define aout_32_bfd_get_relocated_section_contents bfd_generic_get_relocated_section_contents #define aout_32_bfd_relax_section bfd_generic_relax_section +#define aout_32_bfd_seclet_link bfd_generic_seclet_link bfd_target a_out_adobe_vec = { |