From: Roland McGrath Date: Wed, 31 Jul 2002 23:16:57 +0000 (+0000) Subject: * elf/rtld.c (dl_main): Fix typo in error message. X-Git-Tag: cvs/glibc-2-3~599 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=935f95dd364c8abc0da4cdaf9266eca936b48f98;p=platform%2Fupstream%2Fglibc.git * elf/rtld.c (dl_main): Fix typo in error message. 2002-07-31 Roland McGrath --- diff --git a/ChangeLog b/ChangeLog index ba52250..97a6679 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2002-07-31 Roland McGrath + * elf/rtld.c (dl_main): Fix typo in error message. + +2002-07-31 Roland McGrath + * sysdeps/mach/hurd/Versions (ld: GLIBC_2.0): __fxstat -> __fxstat64, __xstat -> __xstat64, __lseek -> __libc_lseek64. Completes 2002-06-09 sysdeps/mach/hurd/dl-sysdep.c change. diff --git a/elf/rtld.c b/elf/rtld.c index 85d8108..82fe809 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -1077,7 +1077,7 @@ of this helper program; chances are you did not intend to run this program.\n\ slotinfo[++i].map = l; 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 uses TLS to initialize some variables. */ _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) (); if (tcbp == NULL) _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. */ TLS_INIT_TP (tcbp);