1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* elf/rtld.c (dl_main): Fix typo in error message.

2002-07-31  Roland McGrath  <roland@frob.com>
This commit is contained in:
Roland McGrath
2002-07-31 23:16:57 +00:00
parent 2edcd24efa
commit 935f95dd36
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-07-31 Roland McGrath <roland@frob.com>
* elf/rtld.c (dl_main): Fix typo in error message.
2002-07-31 Roland McGrath <roland@frob.com> 2002-07-31 Roland McGrath <roland@frob.com>
* sysdeps/mach/hurd/Versions (ld: GLIBC_2.0): __fxstat -> __fxstat64, * sysdeps/mach/hurd/Versions (ld: GLIBC_2.0): __fxstat -> __fxstat64,

View File

@ -1077,7 +1077,7 @@ of this helper program; chances are you did not intend to run this program.\n\
slotinfo[++i].map = l; slotinfo[++i].map = l;
assert (i == GL(dl_tls_max_dtv_idx)); assert (i == GL(dl_tls_max_dtv_idx));
/* Computer the TLS offsets for the various blocks. We call this /* Compute the TLS offsets for the various blocks. We call this
function even if none of the modules available at startup time function even if none of the modules available at startup time
uses TLS to initialize some variables. */ uses TLS to initialize some variables. */
_dl_determine_tlsoffset (); _dl_determine_tlsoffset ();
@ -1090,7 +1090,7 @@ of this helper program; chances are you did not intend to run this program.\n\
tcbp = INTUSE(_dl_allocate_tls) (); tcbp = INTUSE(_dl_allocate_tls) ();
if (tcbp == NULL) if (tcbp == NULL)
_dl_fatal_printf ("\ _dl_fatal_printf ("\
cannot allocate TLS data structures for inital thread"); cannot allocate TLS data structures for initial thread");
/* And finally install it for the main thread. */ /* And finally install it for the main thread. */
TLS_INIT_TP (tcbp); TLS_INIT_TP (tcbp);