summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2009-10-14 12:35:47 -0700
committerRoland McGrath <roland@redhat.com>2009-10-14 12:35:47 -0700
commitf80c90785db8af356791a3d88436a33b292ae6a4 (patch)
tree95ef255d7af8d449d959f2f7bb4b42de76a69ce6
parenta14b4eb4735d102acd52acc799ab181ab3570aaf (diff)
Clean up NT_GNU_GOLD_VERSION printing.
-rw-r--r--libebl/ChangeLog4
-rw-r--r--libebl/eblobjnote.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/libebl/ChangeLog b/libebl/ChangeLog
index 19cf216e..c4411e70 100644
--- a/libebl/ChangeLog
+++ b/libebl/ChangeLog
@@ -1,3 +1,7 @@
+2009-10-14 Roland McGrath <roland@redhat.com>
+
+ * eblobjnote.c (ebl_object_note): Clean up NT_GNU_GOLD_VERSION printing.
+
2009-10-05 Roland McGrath <roland@redhat.com>
* eblopenbackend.c (default_debugscn_p): Match .debug_pubtypes and
diff --git a/libebl/eblobjnote.c b/libebl/eblobjnote.c
index 9b36be6a..b56c6cbc 100644
--- a/libebl/eblobjnote.c
+++ b/libebl/eblobjnote.c
@@ -84,8 +84,8 @@ ebl_object_note (ebl, name, type, descsz, desc)
case NT_GNU_GOLD_VERSION:
if (strcmp (name, "GNU") == 0 && descsz > 0)
/* A non-null terminated version string. */
- printf ("%s%.*s\n",
- gettext (" Version String: "), (int) descsz, desc);
+ printf (gettext (" Linker version: %.*s\n"),
+ (int) descsz, desc);
break;
case NT_GNU_ABI_TAG: