diff options
author | 2002-02-13 22:36:52 +0000 | |
---|---|---|
committer | 2002-02-13 22:36:52 +0000 | |
commit | 81a0111030ee9a2cbffdc25571cfc6ed0f858bc0 (patch) | |
tree | 01add92b5d4c46132660508fc7ce418531d90bd7 /lib/libc/rpc | |
parent | proc is not an enum, dummy! this makes sparc64 amd work (diff) | |
download | wireguard-openbsd-81a0111030ee9a2cbffdc25571cfc6ed0f858bc0.tar.xz wireguard-openbsd-81a0111030ee9a2cbffdc25571cfc6ed0f858bc0.zip |
indent
Diffstat (limited to 'lib/libc/rpc')
-rw-r--r-- | lib/libc/rpc/pmap_prot.c | 6 |
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, ®s->pm_prog) && - xdr_u_long(xdrs, ®s->pm_vers) && - xdr_u_long(xdrs, ®s->pm_prot)) + xdr_u_long(xdrs, ®s->pm_vers) && + xdr_u_long(xdrs, ®s->pm_prot)) return (xdr_u_long(xdrs, ®s->pm_port)); return (FALSE); } |