summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1997-03-29 05:55:06 +0000
committerderaadt <deraadt@openbsd.org>1997-03-29 05:55:06 +0000
commit6037f91124b150ad711aa288662920d85c2b94e6 (patch)
treea41ccdcb4a866e33bea6d5792db169b48980524d /lib/libc
parentSwitch to genassym.cf. (diff)
downloadwireguard-openbsd-6037f91124b150ad711aa288662920d85c2b94e6.tar.xz
wireguard-openbsd-6037f91124b150ad711aa288662920d85c2b94e6.zip
delete extra spaces
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/rpc/svc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libc/rpc/svc.c b/lib/libc/rpc/svc.c
index b7604d5ae97..5d2e657cc15 100644
--- a/lib/libc/rpc/svc.c
+++ b/lib/libc/rpc/svc.c
@@ -28,7 +28,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: svc.c,v 1.8 1996/09/15 09:31:38 tholo Exp $";
+static char *rcsid = "$OpenBSD: svc.c,v 1.9 1997/03/29 05:55:06 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -250,7 +250,7 @@ svc_sendreply(xprt, xdr_results, xdr_location)
{
struct rpc_msg rply;
- rply.rm_direction = REPLY;
+ rply.rm_direction = REPLY;
rply.rm_reply.rp_stat = MSG_ACCEPTED;
rply.acpted_rply.ar_verf = xprt->xp_verf;
rply.acpted_rply.ar_stat = SUCCESS;
@@ -342,11 +342,11 @@ void
svcerr_noprog(xprt)
register SVCXPRT *xprt;
{
- struct rpc_msg rply;
+ struct rpc_msg rply;
- rply.rm_direction = REPLY;
- rply.rm_reply.rp_stat = MSG_ACCEPTED;
- rply.acpted_rply.ar_verf = xprt->xp_verf;
+ rply.rm_direction = REPLY;
+ rply.rm_reply.rp_stat = MSG_ACCEPTED;
+ rply.acpted_rply.ar_verf = xprt->xp_verf;
rply.acpted_rply.ar_stat = PROG_UNAVAIL;
SVC_REPLY(xprt, &rply);
}
@@ -354,7 +354,7 @@ svcerr_noprog(xprt)
/*
* Program version mismatch error reply
*/
-void
+void
svcerr_progvers(xprt, low_vers, high_vers)
register SVCXPRT *xprt;
u_long low_vers;