diff options
Diffstat (limited to 'nis/nis_mkdir.c')
-rw-r--r-- | nis/nis_mkdir.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nis/nis_mkdir.c b/nis/nis_mkdir.c index a781c041ba..685dae64aa 100644 --- a/nis/nis_mkdir.c +++ b/nis/nis_mkdir.c @@ -28,17 +28,17 @@ nis_mkdir (const_nis_name dir, const nis_server *server) if (server == NULL) { - if (__do_niscall (NULL, 0, NIS_MKDIR, (xdrproc_t) xdr_nis_name, + if (__do_niscall (dir, NIS_MKDIR, (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_MKDIR, - (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_MKDIR, + (xdrproc_t) xdr_nis_name, + (caddr_t) &dir, (xdrproc_t) xdr_nis_error, + (caddr_t) &res, 0) != RPC_SUCCESS) return NIS_RPCERROR; } |