summaryrefslogtreecommitdiff
path: root/lib/libc/rpc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-02-13 22:36:53 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-02-13 22:36:53 +0000
commit89c154094948ee29b84f3b385e2c0dde6bbeca1f (patch)
tree81c8704afda7713e331828f9f0b958ad17759ef5 /lib/libc/rpc
parent0e0b1aef20d1a1e13d87fee6a800d64bf4f45d99 (diff)
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);
}