diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-04-22 15:15:42 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-04-22 15:15:42 +0000 |
commit | 162794fe9d66c6733f25c92a6d93e2377d9fd575 (patch) | |
tree | a6280e64142b96b38c23f50bddf7cd9478d69ae6 | |
parent | 7f772644c7633b808ff13e36d7034497f2d310d8 (diff) | |
download | gdb-162794fe9d66c6733f25c92a6d93e2377d9fd575.zip gdb-162794fe9d66c6733f25c92a6d93e2377d9fd575.tar.gz gdb-162794fe9d66c6733f25c92a6d93e2377d9fd575.tar.bz2 |
* nlmconv.c (main): Use CyGnUsEx rather than CyGnUsSeCs for
sections header. Rename from cygnus_sections to cygnus_ext.
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/nlmconv.c | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 19fb8ba..d48510f 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +Fri Apr 22 11:14:19 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + * nlmconv.c (main): Use CyGnUsEx rather than CyGnUsSeCs for + sections header. Rename from cygnus_sections to cygnus_ext. + Thu Apr 21 12:12:26 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) * objdump.c (_DUMMY_NAME_): Don't define. diff --git a/binutils/nlmconv.c b/binutils/nlmconv.c index 90178cf..d421e39 100644 --- a/binutils/nlmconv.c +++ b/binutils/nlmconv.c @@ -864,7 +864,7 @@ main (argc, argv) is what NLMLINK does. */ strncpy (nlm_extended_header (outbfd)->stamp, "MeSsAgEs", 8); - strncpy (nlm_cygnus_section_header (outbfd)->stamp, "CyGnUsSeCs", 10); + strncpy (nlm_cygnus_ext_header (outbfd)->stamp, "CyGnUsEx", 8); /* If the date was not given, force it in. */ if (nlm_version_header (outbfd)->month == 0 @@ -1078,9 +1078,8 @@ main (argc, argv) strncpy (nlm_variable_header (outbfd)->oldThreadName, " LONG", NLM_OLD_THREAD_NAME_LENGTH); - nlm_cygnus_section_header (outbfd)->offset = secsec->filepos; - nlm_cygnus_section_header (outbfd)->length = - bfd_section_size (outbfd, secsec); + nlm_cygnus_ext_header (outbfd)->offset = secsec->filepos; + nlm_cygnus_ext_header (outbfd)->length = bfd_section_size (outbfd, secsec); if (! bfd_close (outbfd)) bfd_fatal (output_file); |