diff options
Diffstat (limited to 'nis/nis_rmdir.c')
-rw-r--r-- | nis/nis_rmdir.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nis/nis_rmdir.c b/nis/nis_rmdir.c index 5b6f1d181b..a8c239ec70 100644 --- a/nis/nis_rmdir.c +++ b/nis/nis_rmdir.c @@ -28,17 +28,17 @@ nis_rmdir (const_nis_name dir, const nis_server *server) if (server == NULL) { - if (__do_niscall (NULL, 0, NIS_RMDIR, (xdrproc_t) xdr_nis_name, + if (__do_niscall (dir, NIS_RMDIR, (xdrproc_t) xdr_nis_name, (caddr_t) &dir, (xdrproc_t) xdr_nis_error, (caddr_t) &res, 0) != RPC_SUCCESS) return NIS_RPCERROR; } else { - if (__do_niscall (server, 1, NIS_RMDIR, - (xdrproc_t) xdr_nis_name, - (caddr_t) &dir, (xdrproc_t) xdr_nis_error, - (caddr_t) &res, 0) != RPC_SUCCESS) + if (__do_niscall2 (server, 1, NIS_RMDIR, + (xdrproc_t) xdr_nis_name, + (caddr_t) &dir, (xdrproc_t) xdr_nis_error, + (caddr_t) &res, 0) != RPC_SUCCESS) return NIS_RPCERROR; } |