From: Ulrich Drepper Date: Thu, 27 Feb 2003 09:16:51 +0000 (+0000) Subject: Update. X-Git-Tag: upstream/2.30~19971 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e361e438a115275fdd56eb25a52b798127adae76;p=external%2Fglibc.git Update. * resolv/res_libc.c [USE___THREAD] (_res): Don't need the initializer anymore now that res_thread_freeres is more careful. --- diff --git a/ChangeLog b/ChangeLog index bbfafe3..b9e7b6c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2003-02-27 Ulrich Drepper + * resolv/res_libc.c [USE___THREAD] (_res): Don't need the + initializer anymore now that res_thread_freeres is more careful. + * sunrpc/svc_udp.c (svcudp_recv): Remove all control messages except the PKTINFO. Reset interface in PKTINFO. Patch by Neil Brown [PR libc/4973]. diff --git a/resolv/res_libc.c b/resolv/res_libc.c index a700e9d..763a887 100644 --- a/resolv/res_libc.c +++ b/resolv/res_libc.c @@ -72,7 +72,7 @@ res_init(void) { #if USE___THREAD /* With __thread support, this per-thread variable is used in all cases. */ -__thread struct __res_state _res = { ._vcsock = -1 }; +__thread struct __res_state _res; extern __thread struct __res_state __libc_res __attribute__ ((alias ("_res"))) attribute_hidden; # define _res __libc_res