1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

Fix a few more places.

This commit is contained in:
Ulrich Drepper
2000-12-08 17:34:49 +00:00
parent 104d0bd3ef
commit e9c9f3a1c2

View File

@@ -115,7 +115,7 @@ no version information available (required by ",
char buf[20]; char buf[20];
buf[sizeof (buf) - 1] = '\0'; buf[sizeof (buf) - 1] = '\0';
/* XXX We cannot translate the message. */ /* XXX We cannot translate the message. */
_dl_signal_error (0, map->l_name, _dl_signal_error (0, map->l_name[0] ? map->l_name : _dl_argv[0],
make_string ("unsupported version ", make_string ("unsupported version ",
_itoa_word (def->vd_version, _itoa_word (def->vd_version,
&buf[sizeof (buf) - 1], &buf[sizeof (buf) - 1],
@@ -149,7 +149,7 @@ no version information available (required by ",
{ {
if (verbose) if (verbose)
/* XXX We cannot translate the message. */ /* XXX We cannot translate the message. */
_dl_signal_cerror (0, map->l_name, _dl_signal_cerror (0, map->l_name[0] ? map->l_name : _dl_argv[0],
make_string ("weak version `", string, make_string ("weak version `", string,
"' not found (required by ", name, "' not found (required by ", name,
")")); ")"));
@@ -157,7 +157,7 @@ no version information available (required by ",
} }
/* XXX We cannot translate the message. */ /* XXX We cannot translate the message. */
_dl_signal_cerror (0, map->l_name, _dl_signal_cerror (0, map->l_name[0] ? map->l_name : _dl_argv[0],
make_string ("version `", string, make_string ("version `", string,
"' not found (required by ", name, ")")); "' not found (required by ", name, ")"));
return 1; return 1;