From ff0bf75374401cd3a726d209198dca4af272b1c2 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 26 Jul 2008 08:42:54 +0000 Subject: * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Namespace cleanup. * elf/dl-load.c (local_strdup): Remove inline. (_dl_map_object_from_fd): Don't allocate l_symbolic_searchlist.r_list. * elf/dl-object.c (_dl_new_object): Allocate symbolic searchlist as part of the object. * sysdeps/unix/sysv/linux/dl-origin.c: Add const to avoid warning. --- sunrpc/clnt_udp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sunrpc') diff --git a/sunrpc/clnt_udp.c b/sunrpc/clnt_udp.c index e3a6812..548c987 100644 --- a/sunrpc/clnt_udp.c +++ b/sunrpc/clnt_udp.c @@ -202,7 +202,7 @@ __libc_clntudp_bufcreate (struct sockaddr_in *raddr, u_long program, *sockp = __socket (AF_INET, SOCK_DGRAM, IPPROTO_UDP); # ifdef SOCK_CLOEXEC if (flags & SOCK_CLOEXEC) - fcntl (*sockp, F_SETFD, FD_CLOEXEC); + __fcntl (*sockp, F_SETFD, FD_CLOEXEC); # endif } #endif -- cgit v1.1