diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-03-14 17:22:27 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2008-03-14 17:22:27 +0000 |
commit | b87b7fc3e6e41cf8006fb2341c236a46f6d8bdd4 (patch) | |
tree | 8b042dd05d766dd46dfa953aec240207eae14208 /dlfcn | |
parent | 5c25449dd9fd706f79ee6d92019f28044d9270fa (diff) | |
download | glibc-b87b7fc3e6e41cf8006fb2341c236a46f6d8bdd4.tar.gz glibc-b87b7fc3e6e41cf8006fb2341c236a46f6d8bdd4.tar.xz glibc-b87b7fc3e6e41cf8006fb2341c236a46f6d8bdd4.zip |
Updated to fedora-glibc-20080310T1651
Diffstat (limited to 'dlfcn')
-rw-r--r-- | dlfcn/dlinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dlfcn/dlinfo.c b/dlfcn/dlinfo.c index b3a3e13899..e8585ea989 100644 --- a/dlfcn/dlinfo.c +++ b/dlfcn/dlinfo.c @@ -1,5 +1,5 @@ /* dlinfo -- Get information from the dynamic linker. - Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2006, 2007, 2008 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 @@ -101,7 +101,7 @@ RTLD_SELF used in code not dynamically loaded")); { void *data = NULL; if (l->l_tls_modid != 0) - data = _dl_tls_get_addr_soft (l); + data = GLRO(dl_tls_get_addr_soft) (l); *(void **) args->arg = data; break; } |