summaryrefslogtreecommitdiff
path: root/elf/dl-minimal.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-04-11 04:53:37 +0000
committerUlrich Drepper <drepper@redhat.com>2001-04-11 04:53:37 +0000
commit28966366a22c307ffc7c56721c8ed6da3cdc7768 (patch)
tree5d816f1e3207cfa9feb88f3fc814fcf40d62b0a2 /elf/dl-minimal.c
parent122dbcec35d2ab75b0aa2d156684135dda153fb8 (diff)
Update.
2001-04-10 Ulrich Drepper <drepper@redhat.com> * elf/dl-minimal.c (__assert_fail): Change error string. It's most of the time no bug in ld.so. (__assert_perror_fail): Likewise.
Diffstat (limited to 'elf/dl-minimal.c')
-rw-r--r--elf/dl-minimal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-minimal.c b/elf/dl-minimal.c
index 8922edcd71..bb0932074f 100644
--- a/elf/dl-minimal.c
+++ b/elf/dl-minimal.c
@@ -188,7 +188,7 @@ __assert_fail (const char *assertion,
const char *file, unsigned int line, const char *function)
{
_dl_fatal_printf ("\
-BUG IN DYNAMIC LINKER ld.so: %s: %u: %s%sAssertion `%s' failed!\n",
+Inconsistency detected by ld.so: %s: %u: %s%sAssertion `%s' failed!\n",
file, line, function ?: "", function ? ": " : "",
assertion);
@@ -201,7 +201,7 @@ __assert_perror_fail (int errnum,
{
char errbuf[64];
_dl_fatal_printf ("\
-BUG IN DYNAMIC LINKER ld.so: %s: %u: %s%sUnexpected error: %s\n",
+Inconsistency detected by ld.so: %s: %u: %s%sUnexpected error: %s\n",
file, line, function ?: "", function ? ": " : "",
__strerror_r (errnum, errbuf, sizeof (errbuf)));
}