* sunrpc/key_prot.c (xdr_unixcred): Work around gcc alias warning.

* nis/nis_xdr.c (_xdr_nis_server): Likewise.
	* nis/yp_xdr.c (xdr_ypmaplist): Likewise.
This commit is contained in:
Ulrich Drepper 2007-08-26 03:34:59 +00:00
parent 278bfa00b6
commit 8f1fe0572d
2 changed files with 4 additions and 3 deletions

View file

@ -9,7 +9,8 @@
* Makerules: Use -p option with mkdir.
* nis/nis_xdr.c (_xdr_nis_server): Work around gcc alias warning.
* sunrpc/key_prot.c (xdr_unixcred): Work around gcc alias warning.
* nis/nis_xdr.c (_xdr_nis_server): Likewise.
(_xdr_directory_obj): Likewise.
(xdr_entry_obj): Likewise.
(xdr_group_obj): Likewise.
@ -20,7 +21,7 @@
(_xdr_ib_request): Likewise.
(_xdr_nis_taglist): Likewise.
(xdr_cback_data): Likewise.
* nis/yp_xdr.c (xdr_ypmaplist): Work around gcc warning.
* nis/yp_xdr.c (xdr_ypmaplist): Likewise.
(xdr_ypresp_maplist): Likewise.
* stdio-common/Makefile: Avoid format string warning for tst-sprint.

View file

@ -115,7 +115,7 @@ xdr_unixcred (XDR * xdrs, unixcred * objp)
return FALSE;
if (!INTUSE(xdr_u_int) (xdrs, &objp->gid))
return FALSE;
if (!INTUSE(xdr_array) (xdrs, (char **) &objp->gids.gids_val,
if (!INTUSE(xdr_array) (xdrs, (void *) &objp->gids.gids_val,
(u_int *) & objp->gids.gids_len, MAXGIDS,
sizeof (u_int), (xdrproc_t) INTUSE(xdr_u_int)))
return FALSE;