summaryrefslogtreecommitdiffstats
path: root/lib/libc/rpc
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2002-02-13 22:36:52 +0000
committerderaadt <deraadt@openbsd.org>2002-02-13 22:36:52 +0000
commit81a0111030ee9a2cbffdc25571cfc6ed0f858bc0 (patch)
tree01add92b5d4c46132660508fc7ce418531d90bd7 /lib/libc/rpc
parentproc is not an enum, dummy! this makes sparc64 amd work (diff)
downloadwireguard-openbsd-81a0111030ee9a2cbffdc25571cfc6ed0f858bc0.tar.xz
wireguard-openbsd-81a0111030ee9a2cbffdc25571cfc6ed0f858bc0.zip
indent
Diffstat (limited to 'lib/libc/rpc')
-rw-r--r--lib/libc/rpc/pmap_prot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/rpc/pmap_prot.c b/lib/libc/rpc/pmap_prot.c
index ef8c45a70bd..17d9be0ee8b 100644
--- a/lib/libc/rpc/pmap_prot.c
+++ b/lib/libc/rpc/pmap_prot.c
@@ -28,7 +28,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: pmap_prot.c,v 1.3 1996/08/19 08:31:39 tholo Exp $";
+static char *rcsid = "$OpenBSD: pmap_prot.c,v 1.4 2002/02/13 22:36:52 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -50,8 +50,8 @@ xdr_pmap(xdrs, regs)
{
if (xdr_u_long(xdrs, &regs->pm_prog) &&
- xdr_u_long(xdrs, &regs->pm_vers) &&
- xdr_u_long(xdrs, &regs->pm_prot))
+ xdr_u_long(xdrs, &regs->pm_vers) &&
+ xdr_u_long(xdrs, &regs->pm_prot))
return (xdr_u_long(xdrs, &regs->pm_port));
return (FALSE);
}