about summary refs log tree commit diff
path: root/sunrpc/clnt_perr.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2004-02-09 10:47:53 +0000
committerAndreas Schwab <schwab@suse.de>2004-02-09 10:47:53 +0000
commit1bc1a2b9076b8383ed82dbe1996b738515544246 (patch)
tree15e0a40ac2a1c4c54a0eca0f5ba6b03a563f571f /sunrpc/clnt_perr.c
parent7be688b58fb2e5fea5db003d9ea72c4d779e65c6 (diff)
downloadglibc-1bc1a2b9076b8383ed82dbe1996b738515544246.tar.gz
glibc-1bc1a2b9076b8383ed82dbe1996b738515544246.tar.xz
glibc-1bc1a2b9076b8383ed82dbe1996b738515544246.zip
* include/rpc/rpc.h: Declare thread variables with their correct
type. 
* sunrpc/clnt_perr.c: Don't cast thread variables. 
* sunrpc/clnt_raw.c: Likewise. 
* sunrpc/clnt_simp.c: Likewise. 
* sunrpc/key_call.c: Likewise. 
* sunrpc/svcauth_des.c: Likewise. 
* sunrpc/svc.c: Likewise. 
* sunrpc/svc_raw.c: Likewise. 
* sunrpc/svc_simple.c: Likewise.
2004-02-09  Andreas Schwab  <schwab@suse.de>

	* include/rpc/rpc.h: Declare thread variables with their correct
	type.
	* sunrpc/clnt_perr.c: Don't cast thread variables.
	* sunrpc/clnt_raw.c: Likewise.
	* sunrpc/clnt_simp.c: Likewise.
	* sunrpc/key_call.c: Likewise.
	* sunrpc/svcauth_des.c: Likewise.
	* sunrpc/svc.c: Likewise.
	* sunrpc/svc_raw.c: Likewise.
	* sunrpc/svc_simple.c: Likewise.
Diffstat (limited to 'sunrpc/clnt_perr.c')
-rw-r--r--sunrpc/clnt_perr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/clnt_perr.c b/sunrpc/clnt_perr.c
index 4b34289a88..4fa5e62c0f 100644
--- a/sunrpc/clnt_perr.c
+++ b/sunrpc/clnt_perr.c
@@ -55,7 +55,7 @@ static char *auth_errmsg (enum auth_stat stat) internal_function;
  * buf variable in a few functions.  Overriding a global variable
  * with a local variable of the same name is a bad idea, anyway.
  */
-#define buf ((char *)RPC_THREAD_VARIABLE(clnt_perr_buf_s))
+#define buf RPC_THREAD_VARIABLE(clnt_perr_buf_s)
 #else
 static char *buf;
 #endif