mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
* 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:
parent
278bfa00b6
commit
8f1fe0572d
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user