summaryrefslogtreecommitdiff
path: root/elf/dl-load.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-02-18 11:00:24 +0000
committerUlrich Drepper <drepper@redhat.com>1998-02-18 11:00:24 +0000
commitda8324650d7e867028d1d5e9bcaed962bc6b2322 (patch)
treecc31a3e0c6b34a8ee51b238c1599ca39784e3693 /elf/dl-load.c
parent1b5fd8308347c4ac7f6a42aaf49ddb32ce2e09ec (diff)
1998-02-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/dl-load.c (add_name_to_object): Don't translate strings. * elf/dl-minimal.c (_strerror_internal): Define it here to avoid pulling in the whole error list. (__dcgettext, dcgettext): Removed. * libc.map: Export _strerror_internal. 1998-02-18 10:50 Ulrich Drepper <drepper@cygnus.com> * sysdeps/i386/fpu/t_exp.c: New file. 1998-02-18 Andreas Jaeger <aj@arthur.rhein-neckar.de> * nis/libnss_nisplus.map: NIS+ support is new in glibc 2.1, add everything with version GLIBC_2.1. * hesiod/libnss_hesiod.map: Likewise. 1998-02-18 Andreas Jaeger <aj@arthur.rhein-neckar.de> * manual/arith.texi (Old-style number conversion): This node is a section, not a subsection. 1998-02-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/dl-lookup.c (make_string): Use __stpcpy instead of stpcpy. 1998-02-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/rtld.c (dl_main): Make sure that the library search paths have been initialized before the first call to _dl_map_object. 1998-02-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * Makerules (common-generated): Add libc_pic.os. 1998-02-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/rtld.c (dl_main): Use PT_PHDR to figure out the load address of the executable. 1998-02-18 10:28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
Diffstat (limited to 'elf/dl-load.c')
-rw-r--r--elf/dl-load.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index cc94d7b510..c93446a737 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -123,11 +123,11 @@ add_name_to_object (struct link_map *l, char *name)
struct libname_list *newname;
if (name == NULL)
- {
- /* No more memory. */
- _dl_signal_error (ENOMEM, NULL, _("could not allocate name string"));
- return 0;
- }
+ {
+ /* No more memory. */
+ _dl_signal_error (ENOMEM, NULL, "could not allocate name string");
+ return 0;
+ }
lastp = NULL;
for (lnp = l->l_libname; lnp != NULL; lastp = lnp, lnp = lnp->next)
@@ -139,12 +139,12 @@ add_name_to_object (struct link_map *l, char *name)
newname = malloc (sizeof *newname);
if (newname == NULL)
- {
- /* No more memory. */
- _dl_signal_error (ENOMEM, name, _("cannot allocate name record"));
- free(name);
- return 0;
- }
+ {
+ /* No more memory. */
+ _dl_signal_error (ENOMEM, name, "cannot allocate name record");
+ free (name);
+ return 0;
+ }
/* The object should have a libname set from _dl_new_object. */
assert (lastp != NULL);