diff options
author | Florian Weimer <fweimer@redhat.com> | 2018-06-26 15:27:03 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2018-06-26 15:27:03 +0200 |
commit | 935d920e763626dbcbbf655117285d1d270791a1 (patch) | |
tree | 70d085e93baad80dc7036b27b30ca06dbad16e57 /sunrpc/clnt_perr.c | |
parent | 29055464a03c72762969a2e8734d0d05d4d70e58 (diff) | |
download | glibc-935d920e763626dbcbbf655117285d1d270791a1.tar.gz glibc-935d920e763626dbcbbf655117285d1d270791a1.tar.xz glibc-935d920e763626dbcbbf655117285d1d270791a1.zip |
sunrpc: Remove always-defined _RPC_THREAD_SAFE_ macro
Header and C source file changes were generated using: unifdef -m -D_RPC_THREAD_SAFE_ include/rpc/rpc.h sunrpc/*.c
Diffstat (limited to 'sunrpc/clnt_perr.c')
-rw-r--r-- | sunrpc/clnt_perr.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sunrpc/clnt_perr.c b/sunrpc/clnt_perr.c index cac1dd9913..dd5b10688e 100644 --- a/sunrpc/clnt_perr.c +++ b/sunrpc/clnt_perr.c @@ -40,16 +40,12 @@ static char *auth_errmsg (enum auth_stat stat); -#ifdef _RPC_THREAD_SAFE_ /* * Making buf a preprocessor macro requires renaming the local * 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 RPC_THREAD_VARIABLE(clnt_perr_buf_s) -#else -static char *buf; -#endif /* * Print reply error info |