summaryrefslogtreecommitdiff
path: root/lib/libc/rpc/rpc_prot.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-03-19 00:27:28 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-03-19 00:27:28 +0000
commit8aee2c24aa2e8e4e5f36756d400b1fa2a0499ab3 (patch)
tree00882eff56effbb09e1eb14578ed85380d3a4e92 /lib/libc/rpc/rpc_prot.c
parent2e443d98dddc7abe239819ab4c58b3a7c4370533 (diff)
Some -Wall
Diffstat (limited to 'lib/libc/rpc/rpc_prot.c')
-rw-r--r--lib/libc/rpc/rpc_prot.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/rpc/rpc_prot.c b/lib/libc/rpc/rpc_prot.c
index d0ca72de32b..c6168e72188 100644
--- a/lib/libc/rpc/rpc_prot.c
+++ b/lib/libc/rpc/rpc_prot.c
@@ -28,7 +28,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: rpc_prot.c,v 1.5 1998/02/27 21:02:40 deraadt Exp $";
+static char *rcsid = "$OpenBSD: rpc_prot.c,v 1.6 1998/03/19 00:27:21 millert Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -103,8 +103,9 @@ xdr_accepted_reply(xdrs, ar)
if (!xdr_u_int32_t(xdrs, &(ar->ar_vers.low)))
return (FALSE);
return (xdr_u_int32_t(xdrs, &(ar->ar_vers.high)));
+ default:
+ return (TRUE); /* TRUE => open ended set of problems */
}
- return (TRUE); /* TRUE => open ended set of problems */
}
/*