From d1abdd5c07fd4479d4981b12c5719e74a4c80189 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 17 May 2001 02:53:37 +0000 Subject: [PATCH] Update. 2001-05-15 Jakub Jelinek * sunrpc/rpc_thread.c (rpc_default): Remove. (__rpc_thread_destroy): Use __libc_tsd_RPC_VARS_mem instead of rpc_default. (rpc_thread_multi, __rpc_thread_svc_fdset, __rpc_thread_createerr, __rpc_thread_svc_pollfd, __rpc_thread_svc_max_pollfd): Likewise. * sunrpc/auth_none.c (authnone_private): Fix a typo. --- ChangeLog | 9 +++++++++ sunrpc/auth_none.c | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a95766f..3a19eef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2001-05-15 Jakub Jelinek + + * sunrpc/rpc_thread.c (rpc_default): Remove. + (__rpc_thread_destroy): Use __libc_tsd_RPC_VARS_mem instead of + rpc_default. + (rpc_thread_multi, __rpc_thread_svc_fdset, __rpc_thread_createerr, + __rpc_thread_svc_pollfd, __rpc_thread_svc_max_pollfd): Likewise. + * sunrpc/auth_none.c (authnone_private): Fix a typo. + 2001-05-16 Martin Schwidefsky * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Fix stack allocation. diff --git a/sunrpc/auth_none.c b/sunrpc/auth_none.c index 10e9b2f..0983b95 100644 --- a/sunrpc/auth_none.c +++ b/sunrpc/auth_none.c @@ -62,7 +62,7 @@ struct authnone_private_s { u_int mcnt; }; #ifdef _RPC_THREAD_SAFE_ -#define authnone_private ((struct authnone_private_ *)RPC_THREAD_VARIABLE(authnone_private_s)) +#define authnone_private ((struct authnone_private_s *)RPC_THREAD_VARIABLE(authnone_private_s)) #else static struct authnone_private_s *authnone_private; #endif -- 2.7.4