diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-02-18 01:15:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-02-18 01:15:34 +0000 |
commit | 377c7157a8802c289c5560f1a2ecd1030d571e7d (patch) | |
tree | dbfc05a518799d315e5a9bc070d6a408287a4691 /libc/inet/rpc/auth_none.c | |
parent | c56735672c2f771e0c9d87480c85b72aa99aceec (diff) |
Alexandre Oliva writes:
While testing the FR-V code with GCC mainline, I ran into some
problems in the RPC code. It relies on a GCC extension that is no
longer available, namely, the result of a cast is no longer considered
an lvalue.
This patch enables the code to compile. I haven't been able to test
RPC though, especially in a multi-threaded environment.
Diffstat (limited to 'libc/inet/rpc/auth_none.c')
-rw-r--r-- | libc/inet/rpc/auth_none.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inet/rpc/auth_none.c b/libc/inet/rpc/auth_none.c index b4a341445..b2683a651 100644 --- a/libc/inet/rpc/auth_none.c +++ b/libc/inet/rpc/auth_none.c @@ -64,7 +64,7 @@ struct authnone_private_s { u_int mcnt; }; #ifdef __UCLIBC_HAS_THREADS__ -#define authnone_private ((struct authnone_private_s *)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 @@ -105,7 +105,7 @@ authnone_marshal (AUTH *client, XDR *xdrs) { struct authnone_private_s *ap; - ap = (struct authnone_private_s *) authnone_private; + ap = authnone_private; if (ap == NULL) return FALSE; return (*xdrs->x_ops->x_putbytes) (xdrs, ap->marshalled_client, ap->mcnt); |