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.14-478-g432d41c


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  432d41ceecf5df8cfbc5a1db0cee9190f07ec1ca (commit)
      from  02f9c6cfe286ebd1f39106ae77245c5514ec6919 (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=432d41ceecf5df8cfbc5a1db0cee9190f07ec1ca

commit 432d41ceecf5df8cfbc5a1db0cee9190f07ec1ca
Author: Ulrich Drepper <drepper@gmail.com>
Date:   Tue Nov 1 08:43:33 2011 -0400

    Use kernel headers for netlink definitions

diff --git a/ChangeLog b/ChangeLog
index 6e247ec..2a096f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-11-01  Ulrich Drepper  <drepper@gmail.com>
+
+	* nscd/connections.c: Use kernel headers instead of <netlink/netlink.h>.
+
 2011-10-31  Paul Pluzhnikov  <ppluzhnikov@google.com>
 
 	* elf/dl-deps.c (_dl_map_object_deps): Reuse alloca space to reduce
diff --git a/nscd/connections.c b/nscd/connections.c
index 1b8a9bd..c741996 100644
--- a/nscd/connections.c
+++ b/nscd/connections.c
@@ -34,7 +34,8 @@
 #include <unistd.h>
 #include <arpa/inet.h>
 #ifdef HAVE_NETLINK
-# include <netlink/netlink.h>
+# include <linux/netlink.h>
+# include <linux/rtnetlink.h>
 #endif
 #ifdef HAVE_EPOLL
 # include <sys/epoll.h>

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

Summary of changes:
 ChangeLog          |    4 ++++
 nscd/connections.c |    3 ++-
 2 files changed, 6 insertions(+), 1 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]