diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-23 17:10:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-23 17:10:21 +0000 |
commit | 4d8d74583abec02470a87ac1481f7dc3b2fa33b5 (patch) | |
tree | 352f2cbc9bc0a82777cdaf703e994a8f166a618d /sunrpc/rpc_clntout.c | |
parent | 6892b766a47fa729e1a40928b29b52ec05d7f754 (diff) | |
download | glibc-4d8d74583abec02470a87ac1481f7dc3b2fa33b5.tar glibc-4d8d74583abec02470a87ac1481f7dc3b2fa33b5.tar.gz glibc-4d8d74583abec02470a87ac1481f7dc3b2fa33b5.tar.bz2 glibc-4d8d74583abec02470a87ac1481f7dc3b2fa33b5.zip |
(printbody): Fix -CLMNab output.
Diffstat (limited to 'sunrpc/rpc_clntout.c')
-rw-r--r-- | sunrpc/rpc_clntout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sunrpc/rpc_clntout.c b/sunrpc/rpc_clntout.c index 0b4f645c07..1e6bb56728 100644 --- a/sunrpc/rpc_clntout.c +++ b/sunrpc/rpc_clntout.c @@ -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"); } |