mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
Back out the casts that rid us of warnings, but paper over the broken
by design xdr routines. And I'm not going to bite off fixing xdr.
This commit is contained in:
parent
6a31ec40cb
commit
675502b9dd
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114122
@ -182,8 +182,8 @@ do_umntall(char *hostname) {
|
||||
clp->cl_auth = authunix_create_default();
|
||||
try.tv_sec = 3;
|
||||
try.tv_usec = 0;
|
||||
clnt_stat = clnt_call(clp, RPCMNT_UMNTALL, (xdrproc_t)xdr_void,
|
||||
(caddr_t)0, (xdrproc_t)xdr_void, (caddr_t)0, try);
|
||||
clnt_stat = clnt_call(clp, RPCMNT_UMNTALL, xdr_void, (caddr_t)0,
|
||||
xdr_void, (caddr_t)0, try);
|
||||
if (clnt_stat != RPC_SUCCESS)
|
||||
warnx("%s: %s", hostname, clnt_sperror(clp, "RPCMNT_UMNTALL"));
|
||||
auth_destroy(clp->cl_auth);
|
||||
@ -208,8 +208,8 @@ do_umount(char *hostname, char *dirp) {
|
||||
clp->cl_auth = authsys_create_default();
|
||||
try.tv_sec = 3;
|
||||
try.tv_usec = 0;
|
||||
clnt_stat = clnt_call(clp, RPCMNT_UMOUNT, (xdrproc_t)xdr_dir, dirp,
|
||||
(xdrproc_t)xdr_void, (caddr_t)0, try);
|
||||
clnt_stat = clnt_call(clp, RPCMNT_UMOUNT, xdr_dir, dirp,
|
||||
xdr_void, (caddr_t)0, try);
|
||||
if (clnt_stat != RPC_SUCCESS)
|
||||
warnx("%s: %s", hostname, clnt_sperror(clp, "RPCMNT_UMOUNT"));
|
||||
auth_destroy(clp->cl_auth);
|
||||
|
Loading…
Reference in New Issue
Block a user