Proper casting for clnt_broadcast() args.

This commit is contained in:
Jordan K. Hubbard 1997-09-15 09:47:16 +00:00
parent 9e55697463
commit 65de42dc08
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=29469

View File

@ -33,7 +33,7 @@
#ifndef lint
static const char rcsid[] =
"$Id: rusers.c,v 1.5 1997/02/22 19:56:52 peter Exp $";
"$Id: rusers.c,v 1.6 1997/08/08 12:12:54 charnier Exp $";
#endif /* not lint */
#include <sys/types.h>
@ -204,7 +204,7 @@ allhosts()
bzero((char *)&up, sizeof(up));
clnt_stat = clnt_broadcast(RUSERSPROG, RUSERSVERS_IDLE, RUSERSPROC_NAMES,
xdr_void, NULL,
xdr_utmpidlearr, &up, rusers_reply);
xdr_utmpidlearr, (char *)&up, rusers_reply);
if (clnt_stat != RPC_SUCCESS && clnt_stat != RPC_TIMEDOUT)
errx(1, "%s", clnt_sperrno(clnt_stat));
}