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.20-555-g2ec2d70


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  2ec2d7032ff9220da1577c37d41ae85c0721ad66 (commit)
      from  da5bf2459ced2f08b89cb462e20eecd7882a38ea (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=2ec2d7032ff9220da1577c37d41ae85c0721ad66

commit 2ec2d7032ff9220da1577c37d41ae85c0721ad66
Author: Roland McGrath <roland@hack.frob.com>
Date:   Fri Jan 23 11:29:02 2015 -0800

    Add missing libc_hidden_weak to stub if_nameindex, if_freenameindex.

diff --git a/ChangeLog b/ChangeLog
index e708002..051a7c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2015-01-23  Roland McGrath  <roland@hack.frob.com>
 
+	* inet/if_index.c (if_nameindex): Add missing libc_hidden_weak.
+	(if_freenameindex): Likewise.
+
 	* resource/getrlimit64.c: Add missing libc_hidden_def.
 
 2015-01-22  Joseph Myers  <joseph@codesourcery.com>
diff --git a/inet/if_index.c b/inet/if_index.c
index 7998eec..73b1efe 100644
--- a/inet/if_index.c
+++ b/inet/if_index.c
@@ -46,6 +46,7 @@ __if_freenameindex (struct if_nameindex *ifn)
 }
 libc_hidden_def (__if_freenameindex)
 weak_alias (__if_freenameindex, if_freenameindex)
+libc_hidden_weak (if_freenameindex)
 stub_warning (if_freenameindex)
 
 struct if_nameindex *
@@ -55,6 +56,7 @@ __if_nameindex (void)
   return NULL;
 }
 weak_alias (__if_nameindex, if_nameindex)
+libc_hidden_weak (if_nameindex)
 stub_warning (if_nameindex)
 
 #if 0

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

Summary of changes:
 ChangeLog       |    3 +++
 inet/if_index.c |    2 ++
 2 files changed, 5 insertions(+), 0 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]