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.25-80-ga10e9c4


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  a10e9c4e53fc652b79abf838f7f837589d2c84db (commit)
      from  2d6ab5df3b675e96ee587ae6a8c2ce004c6b1ba9 (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=a10e9c4e53fc652b79abf838f7f837589d2c84db

commit a10e9c4e53fc652b79abf838f7f837589d2c84db
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Mar 2 17:28:41 2017 +0100

    Remove header file inclusion guard from elf/get-dynamic-info.h
    
    This file is included multiple times, so the guard is harmful.
    Fixes commit 9090848d0607e93fb08a1d68d9f263846ee33f02.

diff --git a/ChangeLog b/ChangeLog
index bed3bd1..56ef827 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2017-03-02  Florian Weimer  <fweimer@redhat.com>
 
+	* elf/get-dynamic-info.h: Remove header file inclusion guard.
+
+2017-03-02  Florian Weimer  <fweimer@redhat.com>
+
 	[BZ #21015]
 	* manual/install.texi (Configuring and compiling): Document
 	--enable-bind-now.
diff --git a/elf/get-dynamic-info.h b/elf/get-dynamic-info.h
index 6413558..7525c3a 100644
--- a/elf/get-dynamic-info.h
+++ b/elf/get-dynamic-info.h
@@ -16,8 +16,8 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
-#ifndef _GET_DYNAMIC_INFO_H
-#define _GET_DYNAMIC_INFO_H 1
+/* This file is included multiple times and therefore lacks a header
+   file inclusion guard.  */
 
 #include <assert.h>
 #include <libc-diag.h>
@@ -182,5 +182,3 @@ elf_get_dynamic_info (struct link_map *l, ElfW(Dyn) *temp)
     info[DT_RPATH] = NULL;
 #endif
 }
-
-#endif /* get-dynamic-info.h */

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

Summary of changes:
 ChangeLog              |    4 ++++
 elf/get-dynamic-info.h |    6 ++----
 2 files changed, 6 insertions(+), 4 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]