Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
(printbody): Fix -CLMNab output.
  • Loading branch information
Ulrich Drepper committed Nov 23, 1999
1 parent 6892b76 commit 4d8d745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sunrpc/rpc_clntout.c
Expand Up @@ -268,14 +268,14 @@ printbody (proc_list * proc)
else
fprintf (fout, "\t if ");
fprintf (fout,
"(clnt_call (clnt, %s, (xdrproc_t) xdr_void", proc->proc_name);
"(clnt_call (clnt, %s, (xdrproc_t) xdr_void, ", proc->proc_name);

fprintf (fout,
"(caddr_t) NULL,\n\t\t(xdrproc_t) xdr_%s, (caddr_t) %s%s,",
stringfix(proc->res_type), (mtflag)?"":ampr(proc->res_type),
RESULT);
if (mtflag)
fprintf (fout, "\n\t\tTIMEOUT));\n}\n");
fprintf (fout, "\n\t\tTIMEOUT));\n\n");
else
fprintf (fout, "\n\t\tTIMEOUT) != RPC_SUCCESS) {\n");
}
Expand Down

0 comments on commit 4d8d745

Please sign in to comment.