diff options
Diffstat (limited to 'sunrpc/clnt_raw.c')
-rw-r--r-- | sunrpc/clnt_raw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sunrpc/clnt_raw.c b/sunrpc/clnt_raw.c index 110141fcc8..082a76abeb 100644 --- a/sunrpc/clnt_raw.c +++ b/sunrpc/clnt_raw.c @@ -128,7 +128,7 @@ clntraw_create (u_long prog, u_long vers) * create client handle */ client->cl_ops = &client_ops; - client->cl_auth = authnone_create (); + client->cl_auth = INTUSE(authnone_create) (); return client; } @@ -170,7 +170,7 @@ call_again: * We have to call server input routine here because this is * all going on in one process. Yuk. */ - svc_getreq (1); + INTUSE(svc_getreq) (1); /* * get results |