From 6873f5c70648a7d05c58277e9e8e076460a01a4c Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Mon, 22 Mar 2004 10:53:16 +0000 Subject: Update. 2004-03-22 Joseph S. Myers * sunrpc/rpc/xdr.h (IXDR_GET_LONG, IXDR_PUT_LONG): Do not use casts as lvalues. 2004-03-22 Andreas Jaeger * elf/tst-dlmodcount.c (unload): Remove unused variable. * misc/tst-mntent.c (main): Use tmpfile instead of tmpnam. --- sunrpc/rpc/xdr.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'sunrpc') diff --git a/sunrpc/rpc/xdr.h b/sunrpc/rpc/xdr.h index 4f240f2522..64ac42fc5b 100644 --- a/sunrpc/rpc/xdr.h +++ b/sunrpc/rpc/xdr.h @@ -262,10 +262,8 @@ struct xdr_discrim * and shouldn't be used any longer. Code which use this defines or longs * in the RPC code will not work on 64bit Solaris platforms ! */ -#define IXDR_GET_LONG(buf) \ - ((long)ntohl((u_long)*__extension__((u_int32_t*)(buf))++)) -#define IXDR_PUT_LONG(buf, v) \ - (*__extension__((u_int32_t*)(buf))++ = (long)htonl((u_long)(v))) +#define IXDR_GET_LONG(buf) ((long)IXDR_GET_U_INT32(buf)) +#define IXDR_PUT_LONG(buf, v) ((long)IXDR_PUT_INT32(buf, (long)(v))) #define IXDR_GET_U_LONG(buf) ((u_long)IXDR_GET_LONG(buf)) #define IXDR_PUT_U_LONG(buf, v) IXDR_PUT_LONG(buf, (long)(v)) -- cgit 1.4.1