This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.18-321-g4db5b08


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  4db5b08f91800061af64a296cb4eeaaf8adb0aac (commit)
      from  a471e96a5352a5f0bde6d32dd36d33524811a2b1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=4db5b08f91800061af64a296cb4eeaaf8adb0aac

commit 4db5b08f91800061af64a296cb4eeaaf8adb0aac
Author: Michael Stahl <mstahl@redhat.com>
Date:   Sun Oct 20 10:34:09 2013 +0200

    Print the reason why preloading failed in do_preload()

diff --git a/ChangeLog b/ChangeLog
index 0cb5ada..8605310 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-10-19  Michael Stahl  <mstahl@redhat.com>
+
+	* elf/rtld.c (do_preload): Print the reason why preloading failed.
+
 2013-10-19  OndÅ?ej Bílka  <neleai@seznam.cz>
 
 	BZ #10278]
diff --git a/elf/rtld.c b/elf/rtld.c
index 91da88c..51682f2 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -816,8 +816,8 @@ do_preload (char *fname, struct link_map *main_map, const char *where)
   if (__builtin_expect (err_str != NULL, 0))
     {
       _dl_error_printf ("\
-ERROR: ld.so: object '%s' from %s cannot be preloaded: ignored.\n",
-			fname, where);
+ERROR: ld.so: object '%s' from %s cannot be preloaded (%s): ignored.\n",
+			fname, where, err_str);
       /* No need to call free, this is still before
 	 the libc's malloc is used.  */
     }

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog  |    4 ++++
 elf/rtld.c |    4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]