summaryrefslogtreecommitdiff
path: root/elf/dl-object.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-19 22:49:19 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-19 22:49:19 +0000
commitdf4d289887774c548345e8c5fe5de64046a00425 (patch)
treef184213506424a743431c04351e029325d887cec /elf/dl-object.c
parentd48f4d530eb492bd008318facff31bb725b066f5 (diff)
Update.
* elf/dl-object.c (_dl_new_object): l_local_scope really gets assigned the local scope. * math/tgmath.h: Rename nextafterx to nexttoward.
Diffstat (limited to 'elf/dl-object.c')
-rw-r--r--elf/dl-object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-object.c b/elf/dl-object.c
index ec05abd423..1c940c607a 100644
--- a/elf/dl-object.c
+++ b/elf/dl-object.c
@@ -1,5 +1,5 @@
/* Storage management for the chain of loaded shared objects.
- Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -77,7 +77,7 @@ _dl_new_object (char *realname, const char *libname, int type,
else
new->l_scope[idx] = &new->l_searchlist;
- new->l_local_scope[0] = new->l_scope[idx];
+ new->l_local_scope[0] = &new->l_searchlist;
/* Don't try to find the origin for the main map which has the name "". */
if (realname[0] != '\0')